PHP类给出声明的未定义public var的错误

时间:2016-02-13 14:45:00

标签: php class object logging variable-declaration

我正在为Logger编写一个PHP类。我已宣布两个公共变量$file_log$file_log_error

class Logger
{
    //constants declaration
    const FILE_BASE = '/log/comunio-uk-log-';

    // property declaration
    protected $file_log = '';
    protected $file_log_error = '';

    // Constructor
    function __construct() {
        $date = getdate();
        $file_log_name = self::FILE_BASE.$date["mday"]."-".$date["mon"]."-".$date["year"].".log";
        $file_log_error_name = self::FILE_BASE.$date["mday"]."-".$date["mon"]."-".$date["year"].".log.error";
        $this->file_log = $file_log_name;
        $this->file_log_error = $file_log_error_name;

        if (file_exists($this->file_log )) {
            echo "#OK for 'file_log' var: <br><pre>", print_r($this->file_log, true), "</pre><br><br>";
        } else {
            echo "#OK for 'file_log' var: <br><pre>", print_r($this->file_log, true), "</pre><br><br>";;
        }

        if (file_exists($this->file_log_error)) {
            echo "#ERROR for 'file_log_error' var: <br><pre>", print_r($this->$file_log_error, true), "</pre><br><br>";
        } else {
            echo "#ERROR for 'file_log_error' var: <br><pre>", print_r($this->$file_log_error, true), "</pre><br><br>";
        }
    }
}

当我创建一个新的类对象时,会调用构造函数并收到以下错误:

#OK for 'file_log': 
/log/comunio-uk-log-13-2-2016.log

#ERROR for 'file_log_error': 

Notice:  Undefined variable: file_log_error in C:\xampp5.6\htdocs\comuniazo-uk\api\bd\logger.php on line 28

Fatal error:  Cannot access empty property in C:\xampp5.6\htdocs\comuniazo-uk\api\bd\logger.php on line 28

为什么第一个受保护的var $file_log被识别,第二个$file_log_error不是?

我已经尝试将vars宣布为公共和私人。结果相同。

1 个答案:

答案 0 :(得分:2)

永远不会定义

$file_log_error。取代

print_r($this->$file_log_error, true)

print_r($this->file_log_error, true)

如果你写

$varName = 'test';
$obj = new stdClass;
$obj->test = 'foo';
$obj->varName = 'bar';
echo $obj->$varName; // echo $obj->test gives 'foo', not 'bar'