1. Coding execution
Example:
<?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(); } }
(Related tutorials recommended: yii framework)
2. CMD execution
yiic.bat Test Index
or
yiic Test Index
3. Windows scheduled execution
Generate script .bat file
D:\phpStudy\WWW\wwwerp\protected\yiic.bat ebaycrontab run
Add Scheduled tasks:
taskschd.msc starts the scheduled task setting window
For more programming-related content, please pay attention to the Programming Introduction column on the php Chinese website!
The above is the detailed content of How to execute php script in yii. For more information, please follow other related articles on the PHP Chinese website!