例如在app下建一个Common文件夹 在Common下建一个function.php 放入公共函数
1 2 3 4 |
例如: function test(){ echo 'this is a test'; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
在项目目录下composer.json中加入 "autoload": { "files":[ "app/Common/function.php" ] } 在项目目录下执行 composer dump-autoload 在控制器的某个方法中调用 public function aa(){ test(); } |
from:https://blog.csdn.net/u010957293/article/details/52137241