1. 程式人生 > >laravel 如何引入自己的函式或類庫

laravel 如何引入自己的函式或類庫

例如在app下建一個Common資料夾 在Common下建一個function.php 放入公共函式

例如:
    function test(){
        echo 'this is a test';
    }
在專案目錄下composer.json中加入
"autoload": {
    "files":[
        "app/Common/function.php"
    ]
}

在專案目錄下執行
composer dump-autoload

在控制器的某個方法中呼叫
public function aa(){
    test();    
}