1.在app下建一个Common文件夹 在Common下建一个function.php 放入公共函数
function test(){ echo 'this is a test'; }
2.在项目目录下composer.json中加入
在项目目录下composer.json中加入
"autoload": { "files":[ "app/Common/function.php" ] }
3.在项目目录下执行下面命令
composer dump-autoload