1.在app下建一个Common文件夹 在Common下建一个function.php 放入公共函数
function test(){ echo 'this is a test'; }
2.在项目目录下composer.json中加入
"autoload": { "files":[ "app/Common/function.php" ] }
3.在项目目录下执行下面命令
composer dump-autoload
1.在app下建一个Common文件夹 在Common下建一个function.php 放入公共函数
function test(){ echo 'this is a test'; }
2.在项目目录下composer.json中加入
"autoload": { "files":[ "app/Common/function.php" ] }
3.在项目目录下执行下面命令
composer dump-autoload
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。