本文實例講述了Yii實作Command任務處理的方法。分享給大家參考,具體如下:
1.配置,執行任務所需的元件
任務設定檔:/protected/config/console.php
設定方法跟設定檔差不多
<?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.
設定方法跟設定檔差不多<?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"; } }2.任務檔案放在/protected/commands/ 檔案目錄下繼承CConsoleCommand 基底類別的為任務檔案命名方法為 任務名稱+Command例如GoCommand.php
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:3.執行任務開啟命令列工具,進入指令列專案的/protected 目錄下輸入yiic指令即出現提示,提示清單顯示剛才寫的任務檔案
rrreee
執行指令yiic go 可實現任務處理希望本文所述對大家基於Yii框架的PHP程式設計有所幫助。 🎜🎜更多Yii實作Command任務處理的方法詳解相關文章請關注PHP中文網! 🎜