Home >Backend Development >PHP Tutorial >yii框架中创建定时任务

yii框架中创建定时任务

WBOY
WBOYOriginal
2016-06-06 20:35:301075browse

在yii框架中,如创建的定时任务class TestCommand extends CConsoleCommand
{
public function run()
{
...
}
},在这个类当中,可以写多个需要定时执行的方法吗,比如run这是一个需要定时执行的方法,在这个类中,再创建一个方法public function get()。定时这个文件类,是不是可以同时执行这两个定时的方法啊

回复内容:

在yii框架中,如创建的定时任务class TestCommand extends CConsoleCommand
{
public function run()
{
...
}
},在这个类当中,可以写多个需要定时执行的方法吗,比如run这是一个需要定时执行的方法,在这个类中,再创建一个方法public function get()。定时这个文件类,是不是可以同时执行这两个定时的方法啊

  1. 可以多写几个方法
  2. 可以同时执行两个方法
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