中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中laravel框架自帶命令的實現方法

發布時間:2021-04-29 10:07:18 來源:億速云 閱讀:117 作者:小新 欄目:編程語言

這篇文章主要介紹了php中laravel框架自帶命令的實現方法,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

python有哪些常用庫

python常用的庫:1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。

1、作為服務提供者,加載到程序中。

// config/app.php 中。
'providers' => [
    // 這個便是laravel自帶的artisan命令提供者
    Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
]

2、然后找到 Up/Down命令入口

/**
 * Register the command.
 *
 * @return void
 */
protected function registerUpCommand()
{
    $this->app->singleton('command.up', function () {
        return new UpCommand;
    });
}

3、DownCommand實現

class DownCommand extends Command
{
    /**
     * The console command name.
     *
     * @var string
     */
    protected $name = 'down';
 
    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Put the application into maintenance mode';
 
    /**
     * Execute the console command.
     *
     * @return void
     */
    public function fire()
    {
        // 關鍵點: 在當前存儲目錄/framework 下面創建一個 down文件
        touch($this->laravel->storagePath().'/framework/down');
 
        $this->comment('Application is now in maintenance mode.');
    }
}
 
 
// touch() 函數php文檔解釋
/**
 * Sets access and modification time of file
 * @link http://php.net/manual/en/function.touch.php
 * @param string $filename <p>
 * The name of the file being touched.
 * </p>
 * @param int $time [optional] <p>
 * The touch time. If time is not supplied,
 * the current system time is used.
 * </p>
 * @param int $atime [optional] <p>
 * If present, the access time of the given filename is set to
 * the value of atime. Otherwise, it is set to
 * time.
 * </p>
 * @return bool true on success or false on failure.
 * @since 4.0
 * @since 5.0
 */
function touch ($filename, $time = null, $atime = null) {}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“php中laravel框架自帶命令的實現方法”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

慈溪市| 东乡| 延边| 广元市| 邯郸市| 吴堡县| 沂水县| 盘山县| 焦作市| 台东县| 双辽市| 隆安县| 大城县| 山东省| 新丰县| 汉阴县| 汉沽区| 达拉特旗| 栖霞市| 潜江市| 弥渡县| 和政县| 会宁县| 天台县| 沙湾县| 道孚县| 阳东县| 漳平市| 翼城县| 万源市| 蕲春县| 磐石市| 堆龙德庆县| 门头沟区| 宝坻区| 大关县| 逊克县| 汨罗市| 涞源县| 静乐县| 绵竹市|