本篇內(nèi)容介紹了“php laravel框架自帶命令如何實(shí)現(xiàn)”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
成都創(chuàng)新互聯(lián)公司是少有的網(wǎng)站設(shè)計、網(wǎng)站制作、營銷型企業(yè)網(wǎng)站、小程序開發(fā)、手機(jī)APP,開發(fā)、制作、設(shè)計、買鏈接、推廣優(yōu)化一站式服務(wù)網(wǎng)絡(luò)公司,自2013年起,堅持透明化,價格低,無套路經(jīng)營理念。讓網(wǎng)頁驚喜每一位訪客多年來深受用戶好評
1、作為服務(wù)提供者,加載到程序中。
// 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實(shí)現(xiàn)
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() { // 關(guān)鍵點(diǎn): 在當(dāng)前存儲目錄/framework 下面創(chuàng)建一個 down文件 touch($this->laravel->storagePath().'/framework/down'); $this->comment('Application is now in maintenance mode.'); } } // touch() 函數(shù)php文檔解釋 /** * Sets access and modification time of file * @link http://php.net/manual/en/function.touch.php * @param string $filename* The name of the file being touched. *
* @param int $time [optional]* The touch time. If time is not supplied, * the current system time is used. *
* @param int $atime [optional]* If present, the access time of the given filename is set to * the value of atime. Otherwise, it is set to * time. *
* @return bool true on success or false on failure. * @since 4.0 * @since 5.0 */ function touch ($filename, $time = null, $atime = null) {}
“php laravel框架自帶命令如何實(shí)現(xiàn)”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!