duanchou6534 2018-10-24 13:44
浏览 128
已采纳

不能从另一个文件中使用php变量[重复]

like my title says, whenever I try to use my variables from another php file, it doesn't work (Undefined variable). I did declare them in the file that I'm including. For example, I have this file called variables.php that have this in it:

<?php
$DEBUG = TRUE;
$mysqli = new mysqli("127.0.0.1", "root", "", "29185917-database");
$DEBUG_LOG_FILE = "../log";
?>

And then I have another file called debug.php that tries to use the variable 'DEBUG' but it cannot access it. Here is my debug.php file:

<?php
require_once 'variables.php';
function echo_debug(string $message)
{
    if($DEBUG) {
        echo $message;
    }
}
?>

Whenever I try to use my function echo_debug I get the error message : Undefined variable 'DEBUG'. Any help on this problem is appreciated :).

</div>
  • 写回答

3条回答 默认 最新

  • dqwcdqs358367 2018-10-24 13:49
    关注

    Functions have their own scope. The variable is accessible, just not from inside the function.

    You could pass $DEBUG as a parameter

    function echo_debug(string $message, bool $DEBUG)
    

    Then you would call it as

    echo_debug("comment that will help me debug in dev mode", $DEBUG);
    

    Another option is to declare DEBUG as a constant,

    define('DEBUG', true);
    $mysqli = new mysqli("127.0.0.1", "root", "", "29185917-database");
    $DEBUG_LOG_FILE = "../log";
    

    Then, in your function you would check for that constant:

    function echo_debug(string $message) {
        if(DEBUG) { ... }
    }
    

    You could also use the global keyword, right above your if(), try to add global $DEBUG;.

    require_once 'variables.php';
    function echo_debug(string $message)
    {
        global $DEBUG;
        if($DEBUG) { ... }
    }
    

    But generally the other two solutions are better, global variables are sometimes frowned upon.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥15 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services