laravel设置全局方法

1.在app下建一个Common文件夹 在Common下建一个function.php 放入公共函数php

function test(){
   echo 'this is a test';
}

2.在项目目录下composer.json中加入css

"autoload": {
    "files":[
        "app/Common/function.php"
    ]
}

3.在项目目录下执行下面命令json

composer dump-autoload
相关文章
相关标签/搜索