Home  >  Article  >  PHP Framework  >  How to execute php script in yii

How to execute php script in yii

王林
王林Original
2020-02-20 15:52:042412browse

How to execute php script in yii

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn