Yiic执行php脚本

用 Yii 写一个脚本,在 Linux 上运行这个脚本

1、编写好 XXXXCommand 继承 CConsoleCommand

<?php
namespace base\console;
class TestCommand extends \CConsoleCommand
{
    private $connection;

public function __construct() { $this->connection = \Yii::app()->db; } /** * 测试 */ public function actionTest() {
echo 'Begin\n';
     //这里写你的脚本.balabalabalabala,数据库的增删查改都可以
     $sql = 'select * from test';
$resule = $this->connection->createCommand($sql)->queryRow();
     var_dump($result);
echo "Finally, Test Yiic End.\n"; }
}
?>

 

2、在你的 Linux 服务器上,找到你 yiic 文件所在的目录

 

3、执行命令运行脚本

#./yiic test test

说明:./yiic 后面跟着控制器(Command)和方法(action),记得空格

 

4、脚本的执行结果可以直接用 echo 打印出来看

 

PS:如果提示 php.exe 错误的话,检查一下 yiic.bat 里面的配置是否正确,yiic、yiic.php、yiic.bat 都检查一下

posted @ 2018-10-19 16:13  凌雨尘  阅读(856)  评论(0编辑  收藏  举报