中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

怎么在Yii中對Command任務進行處理

發布時間:2021-02-11 14:20:05 來源:億速云 閱讀:208 作者:Leah 欄目:開發技術

怎么在Yii中對Command任務進行處理?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

1.配置,執行任務所需要的組件

任務配置文件:/protected/config/console.php

配置方法跟配置main文件差不多

<?php
// This is the configuration for yiic console application.
// Any writable CConsoleApplication properties can be configured here.
return array(
  'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
  'name'=>'My Console Application',
  // application components
  // 自動載入的模型和組件類
  'import'=>array(
      'application.models.*',//載入"application/models/"文件夾下的所有模型類
      'application.components.*',//載入"application/components/"文件夾下的所有應用組件類
      'application.extensions.*',//載入"application/extensions/"文件夾下的所有應用組件類
  ),
  'components'=>array(
      // uncomment the following to use a MySQL database
      'db'=>array(
          'connectionString' => 'mysql:host=localhost;dbname=dbname',//連接mysql數據庫
          'emulatePrepare' => true,
          'username' => 'root',//MySQL數據庫用戶名
          'password' => '123456',//MySQL數據庫用戶密碼
          'charset' => 'utf8',//MySQL數據庫編碼
          'tablePrefix' => 'zd_', //MySQL數據庫表前綴
          'enableProfiling'=>true,
          'enableParamLogging'=>true,
      ),
      //加載Email組件
      'mailer' => array(
          'class'   => 'application.extensions.mailer.EMailer',
      ),
  ),
);

2.任務文件

放在 /protected/commands/ 文件目錄下繼承 CConsoleCommand 基類的為任務文件 命名方法為   任務名稱+Command

例如 GoCommand.php

<?php
/**
 * 自動運行文件
 */
class GoCommand extends CConsoleCommand
{
  /**
   * 死循環輸出
   */
  public function run(){
    for($i=1;$i>0;$i++){
      self::echoWord($i);
      sleep(2);//休眠2秒
      //跳出
      if(i==500){
        break;
      }
    }
  }
  /**
   * 輸出hollo word
   */
  public function echoWord($i){
    echo "hollo word --$i\n";
  }
}

3.執行任務

打開命令行工具,進入項目的/protected 目錄下 輸入yiic命令即出現提示,提示列表顯示剛才寫的任務文件

E:\project\app\protected>yiic
Yii command runner (based on Yii v1.1.12)
Usage: E:\zeee\zyd\protected\yiic.php <command-name> [parameters...]
The following commands are available:
- go
- mailqueue
- message
- migrate
- shell
- webapp
To see individual command help, use the following:

看完上述內容,你們掌握怎么在Yii中對Command任務進行處理的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

沧源| 子洲县| 谢通门县| 顺昌县| 海丰县| 华蓥市| 湘潭市| 沂水县| 临泉县| 新和县| 云霄县| 三江| 枝江市| 庆元县| 万州区| 桂阳县| 新平| 朝阳县| 陕西省| 龙游县| 水富县| 津南区| 祁连县| 宁阳县| 友谊县| 定西市| 加查县| 庆阳市| 乌兰县| 米易县| 西宁市| 马山县| 新邵县| 南城县| 杭州市| 安平县| 车致| 蓬安县| 慈溪市| 固安县| 山阳县|