Home > PHP Framework > YII > body text

How to execute php script in yii

王林
Release: 2020-02-20 15:52:04
Original
2464 people have browsed it

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();
    }
}
Copy after login

(Related tutorials recommended: yii framework)

2. CMD execution

yiic.bat Test Index
Copy after login

or

yiic Test Index
Copy after login

3. Windows scheduled execution

Generate script .bat file

D:\phpStudy\WWW\wwwerp\protected\yiic.bat ebaycrontab run
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template