1、編碼執行
範例:
<?php /** * Created by PhpStorm. * User: Administrator * Date: 2018/4/12 0012 * Time: 下午 5:43 */ /** * 示例代码 * Class TestCommand */ class TestCommand extends CConsoleCommand { /** * * 测试(项目根目录下执行) * * 脚本执行示例: * windows环境: * >yiic.bat Test Index * linux环境: * >yiic Test Index */ public function actionIndex() { echo "ok"; exit(); } }
(相關教學建議:yii框架)
2、cmd執行
yiic.bat Test Index
或
yiic Test Index
3、windows定時執行
產生腳本.bat檔案
D:\phpStudy\WWW\wwwerp\protected\yiic.bat ebaycrontab run
新增定時任務:
taskschd.msc啟動定時任務設定視窗
更多程式相關內容,請追蹤php中文網程式入門欄位!
以上是yii如何執行php腳本的詳細內容。更多資訊請關注PHP中文網其他相關文章!