亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Laravel怎樣自定義command命令淺析

發布時間:2021-02-04 10:35:09 來源:億速云 閱讀:311 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關Laravel怎樣自定義command命令淺析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

前言

用過Laravel的都知道,Laravel通過php artisan make:controller可以生成控制器,同樣的夜可以用命令生成中間介和模型,那怎么自定義生成文件呢?

下面話不多說了,來一起看看詳細的介紹吧

自定義方法如下:

1.創建command類

<?php

namespace App\Console\Commands;

use Illuminate\Console\GeneratorCommand;

class ServiceMakeCommand extends GeneratorCommand
{
 /**
  * The console command name.
  *
  * @var string
  */
 protected $name = 'make:service';

 /**
  * The console command description.
  *
  * @var string
  */
 protected $description = 'Create a new service class';

 /**
  * The type of class being generated.
  *
  * @var string
  */
 protected $type = 'Services';

 /**
  * Get the stub file for the generator.
  *
  * @return string
  */
 protected function getStub()
 {
  return __DIR__.'/stubs/service.stub';
 }

 /**
  * Get the default namespace for the class.
  *
  * @param string $rootNamespace
  * @return string
  */
 protected function getDefaultNamespace($rootNamespace)
 {
  return $rootNamespace."\Services";
 }
}

2.在Commands/stubs文件下創建自定義模板文件

<?php

namespace DummyNamespace;

class DummyClass 
{
 public function __construct()
 {

 }
}

創建了一個只有構造函數的類,具體模板可以自己定義

運行測試

php artisan make:service Web/TestService

這個時候Services文件下的Web目錄下會生成TestService文件,Web目錄不存在時會自動創建

感謝各位的閱讀!關于“Laravel怎樣自定義command命令淺析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

玉门市| 准格尔旗| 桑植县| 通州市| 葫芦岛市| 杭锦后旗| 沿河| 乌苏市| 安阳县| 梅河口市| 苗栗市| 永靖县| 黑河市| 嵩明县| 肥西县| 和田市| 邓州市| 沽源县| 万盛区| 库尔勒市| 红安县| 和田县| 安庆市| 崇阳县| 长白| 融水| 温宿县| 扎囊县| 山丹县| 城步| 浪卡子县| 中宁县| 宝鸡市| 溆浦县| 长兴县| 墨江| 鄯善县| 彝良县| 海丰县| 屏南县| 阿克陶县|