thinkphp5框架采用composer 载入文件的方式载入functions.php文件
目录结构如图:
composer.json中增加代码如下
"autoload":{
"files":["application/common/common/functions.php"]
},
functions.php中有一个test()函数,输出helloworld;
在index控制器的index方法中调用该test()函数,
test(); 或者test();
都不能正常使用, 提示找不到函数,我哪里错了?
修改
composer.json
文件后执行composer dump-autoload