cakephp configure :: read()错误

时间:2015-10-05 18:50:44

标签: cakephp configure

我是Cakephp的新手,

我需要在所有模型和控制器中使用变量。

bootstrap.php

Configure::write('TimeField', 'time');

AppController.php

public $TimeField = Configure::read('TimeField');

以上行给出错误:

  

错误:语法错误,意外情况'(',期待','或&#39 ;;'   文件:D:\ xampp \ htdocs \ inventory \ app \ Controller \ AppController.php   行:37

请指教。如果我应该遵循任何其他方法,请告诉我,因为我还需要在所有模型中使用此变量。

1 个答案:

答案 0 :(得分:0)

您不能在类属性声明中使用函数调用。

您应该声明

public $timeField;

然后使用

在__construct()方法中初始化它
$timeField = Configure::read('TimeField');