本文整理汇总了PHP中Tasks::where方法的典型用法代码示例。如果您正苦于以下问题:PHP Tasks::where方法的具体用法?PHP Tasks::where怎么用?PHP Tasks::where使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tasks
的用法示例。
在下文中一共展示了Tasks::where方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: post_uncheck_task
public function post_uncheck_task()
{
$data = Input::all();
Tasks::where(array('id' => $data['uncheck_task'], 'user_id' => Auth::id()))->update(array('status' => 0, 'updated_at' => new DateTime()));
$updated_task = Tasks::where(array('id' => $data['uncheck_task'], 'user_id' => Auth::id()))->first();
return array('task_name' => $updated_task->task_name);
}
示例2: fire
/**
* Execute the console command.
*
* @return mixed
*/
public function fire()
{
//启动之前先检查进程是否还活着,如果还活着咱就退 windows 下 tasklist /fi "PID eq xxxx"
if (file_exists($this->filelock) && function_exists('posix_kill') && posix_kill(intval(file_get_contents($this->filelock)), 0)) {
die("pid exists,exit");
}
file_put_contents($this->filelock, getmypid());
Tasks::where("status", "execute")->update(array("status" => "created"));
while (true) {
//获取任务,执行任务
$tasks = Tasks::where('status', 'created')->lists('id');
foreach ($tasks as $_id) {
//TaskHelper
Task::run($_id);
}
sleep(1);
}
}