精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Laravel Artisan控制臺

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

 

工匠介紹

artisan是laravel經常使用的命令行界面,它包含一組用于開發web應用程序的有用命令。

 

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

啟動laravel項目

php artisan serve

啟用緩存機制

php artisan route:cache

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

php artisan list

查看有關任何命令的幫助并查看可用的選項和參數

php artisan help serve

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

 

編寫命令

除artisan中列出的命令外,用戶還可以創建可在web應用程序中使用的自定義命令。請注意,命令存儲在 app / console / commands目錄中 。

下面顯示了創建用戶定義命令的默認命令 -

php artisan make:console  

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

為 defaultcommand 創建的文件被命名為 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(){
      //
   }
}

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

您還可以創建用戶定義命令的任務計劃,如以下代碼所示 -

 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();
   }
}

請注意,給定命令的任務時間表是在名為 schedule 的函數中定義的,該函數包含一個用于計劃 每小時 參數的任務的參數。

這些命令在命令數組中注冊,其中包括命令的路徑和名稱。

一旦命令被注冊,它就被列在artisan命令中。當您調用指定命令的幫助屬性時,將顯示簽名和說明部分中包含的值。

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

php artisan help defaultcommand
相關文章