require_once'modules/logger.php';
$Logger = new Logger();
require_once 'templates/list.php';
$Templates = new templatesList();
require_once 'widgets/list.php';
$Widgets = new widgetsList();
我使用$Logger
intemplates/list.php
和 in widgets/list.php
。
$Templates
我用在/widgets/list.php
.
上面的代码抛出这个错误:
注意:未定义变量:
Logger
在.../templates/list.php
第 99 行致命错误:在第 99 行调用toLog()
非对象上.../templates/list.php
的成员函数
UPD 这是第 99 行:
$Logger->toLog( $contentData );