這篇文章主要介紹了php中l(wèi)aravel框架自帶命令的實(shí)現(xiàn)方法,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:申請(qǐng)域名、網(wǎng)站空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、龍灣網(wǎng)站維護(hù)、網(wǎng)站推廣。
python常用的庫(kù):1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。
1、作為服務(wù)提供者,加載到程序中。
// config/app.php 中。 'providers' => [ // 這個(gè)便是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)前存儲(chǔ)目錄/framework 下面創(chuàng)建一個(gè) 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) {}
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“php中l(wèi)aravel框架自帶命令的實(shí)現(xiàn)方法”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!