黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Laravel Artisan控制臺(tái)

laravel框架提供了三種通過(guò)命令行進(jìn)行交互的主要工具: artisan,ticker 和 repl 。本章詳細(xì)解釋了artisan。

 

工匠介紹

artisan是laravel經(jīng)常使用的命令行界面,它包含一組用于開(kāi)發(fā)web應(yīng)用程序的有用命令。

 

以下是artisan中幾個(gè)命令的列表以及它們各自的功能 -

啟動(dòng)laravel項(xiàng)目

php artisan serve

啟用緩存機(jī)制

php artisan route:cache

查看artisan支持的可用命令列表

php artisan list

查看有關(guān)任何命令的幫助并查看可用的選項(xiàng)和參數(shù)

php artisan help serve

以下屏幕截圖顯示了上面給出的命令的輸出 -

 

編寫(xiě)命令

除artisan中列出的命令外,用戶還可以創(chuàng)建可在web應(yīng)用程序中使用的自定義命令。請(qǐng)注意,命令存儲(chǔ)在 app / console / commands目錄中 。

下面顯示了創(chuàng)建用戶定義命令的默認(rèn)命令 -

php artisan make:console  

一旦你輸入上面給出的命令,你可以看到輸出如下面的屏幕截圖所示 -

為 defaultcommand 創(chuàng)建的文件被命名為 defaultcommand.php ,如下所示 -

 namespace app\console\commands;
use illuminate\console\command;

class defaultcommand extends command{
   /**
      * the name and signature of the console command.
      *
      * @var string
   */

   protected $signature = 'command:name';

   /**
      * the console command description.
      *
      * @var string
   */

   protected $description = 'command description';

   /**
      * create a new command instance.
      *
      * @return void
   */

   public function __construct(){
      parent::__construct();
   }

   /**
      * execute the console command.
      *
      * @return mixed
   */

   public function handle(){
      //
   }
}

該文件包含用戶定義的命令的簽名和說(shuō)明。命名 句柄 的公共函數(shù)在執(zhí)行命令時(shí)執(zhí)行功能。這些命令在同一目錄下的文件 kernel.php 中注冊(cè)。

您還可以創(chuàng)建用戶定義命令的任務(wù)計(jì)劃,如以下代碼所示 -

 namespace app\console;

use illuminate\console\scheduling\schedule;
use illuminate\foundation\console\kernel as consolekernel;

class kernel extends consolekernel {
   /**
      * the artisan commands provided by your application.
      *
      * @var array
   */

   protected $commands = [
      // commands\inspire::class,
      commands\defaultcommand::class
   ];

   /**
      * define the application's command schedule.
      *
      * @param \illuminate\console\scheduling\schedule $schedule
      * @return void
   */

   protected function schedule(schedule $schedule){
      // $schedule--->command('inspire')
      // ->hourly();
   }
}

請(qǐng)注意,給定命令的任務(wù)時(shí)間表是在名為 schedule 的函數(shù)中定義的,該函數(shù)包含一個(gè)用于計(jì)劃 每小時(shí) 參數(shù)的任務(wù)的參數(shù)。

這些命令在命令數(shù)組中注冊(cè),其中包括命令的路徑和名稱。

一旦命令被注冊(cè),它就被列在artisan命令中。當(dāng)您調(diào)用指定命令的幫助屬性時(shí),將顯示簽名和說(shuō)明部分中包含的值。

讓我們看看如何查看我們的命令 defaultcommand 的屬性。你應(yīng)該使用如下所示的命令 -

php artisan help defaultcommand
相關(guān)文章