laravel添加帮助类helper.php

我们知道在`php`中很多系统函数中可以在框架中的任何位置可以直接调用

而`laravel`框架中很多函数也可以在任何位置直接使用

那么怎么定义的函数,并且也能够在代码的任何位置调用呢?

首先在`app\helpers.php`中添加以下代码

>"autoload": {
"files": [
"app/helpers.php"
],
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\": "app/"
}
},

然后执行`composer dump-autoload`

使用

在`controller`中添加

>public function index() {
echo hello();
}

    A+
发布日期:2020年11月04日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: