by Devin Yang

建立於: 7年前 ( 更新: 7年前 )

在Laravel的框架中,包含了相當大量的PHP功能(php functions),稱為helper。
https://laravel.com/docs/5.6/helpers
那我們要如何在Laravel中自訂自己的helper呢,其實相當簡單呢..
在composer.json中autoload內的files新增即可。
 "autoload": {
        "files": [
            "app/ow_source/_functions.php"
        ],
        "classmap": [
            "database/seeds",
            "database/factories"
        ],
        "psr-4": {
            "App\\": "app/",
            "Ow\\": "app/ow_source/class",
            "Ow\\Model\\": "app/ow_source/model"
        }
    },
這樣我們就能隨時隨地的呼叫我們的功能囉。

Tags: laravel

Devin Yang

文章內容無法一一說明,如果您有什麼不了解處,歡迎提問哦:)

No Comment

Post your comment

需要登入才可留言!

類似的文章


laravel,livewire

livewire重要筆記

在開始您的 Livewire 之旅之前,以下是關於公開屬性(public properities)的三項基本注意事項:一、屬性名稱不能與為 Livewire 保留的屬性名稱衝突(例如$rules或$message)二、儲存在公開屬性(public properities)中的資料,對前端 JavaScript 是可見的。因此,您不應在其中儲存敏感資料。三、屬性只能是 JavaScript 友好的資料類型(字符串、整數、數組、布爾值),或以下 PHP 類型之一:Stringable、Collection、DateTime、Model、EloquentCollection。

dlaravel

D-Laravel上的.env.example檔說明

本文說明關於D-Laravel上的.env設定 MYSQL_ROOT_PASSWORD=secret LARAVEL_INSTALLER='container' DOCKER_SERVICES='docker-compose.yml service/redis.yml'

laravel

Laravel維護模式下的隨機密碼

本文所提到的功能需為Laravel 8及之後的版本才可以使用假如我們有一些有外部IP的Laravel外部的測試網站,但是只想給自己存取。我是這麼做的提供參考