laravel 自定義全域性函式

weixin_34104341發表於2020-04-07

laravel 內建全域性函式在 illuminate/supports/helpers.php

 

自己定義全域性函式

方法一 

"files": [
    "app/Helpers/helpers.php"
]

然後執行: composer dump-auto

方法二

bootstrap/autoload.php 中新增

require __DIR__.'/../app/Helpers/helpers.php';
 
 

轉載於:https://www.cnblogs.com/lengthuo/p/7214283.html

相關文章