学习ThinkPHP3.2.2:video9,用“C”函数读取配置文件内容

时间:2022-10-29 09:58:39

在配置文件 D:\wamp\www\wish\APP\Home\Conf\config.php 中配置一下内容:

return array(

    //'配置项'=>'配置值'

    'myvar' => 'valueofaaa1'

);


在控制器 D:\wamp\www\wish\APP\Home\Controller\IndexController.class.php 修改index方法:

echo C('myvar');


浏览主页:http://localhost/wish/index.php

显示:valueofaaa1