美文网首页
Thinkphp5+Workerman

Thinkphp5+Workerman

作者: RocaLee | 来源:发表于2019-03-14 09:22 被阅读0次

对上一篇进行了部分优化
https://www.jianshu.com/p/763f6852f32c

进程启动

public function onWorkerStart($worker){
  $handle = new Index();
  $hander->add_timer();
}

index.php文件

<?php
namespace app\push\controller;
use Workerman\Lib\Timer;
use think\Db;
class Index{
  public function add_timer(){
    Timer::add(1,array($this,'index'),array(),true);
  }
  public function index(){
    $data = array(
      'time' => time(),
      'state' => 1
    );
    Db::name('text)->insert($data);
    sleep(120);
  }
}

END

新增加一个停止workerman

进入到public下

php server.php stop

相关文章

  • Thinkphp5+Workerman

    今天整理一个Workerman的小例子 按照Thinkphp5的手册来配置一下网址如下:https://www.k...

  • Thinkphp5+Workerman

    对上一篇进行了部分优化https://www.jianshu.com/p/763f6852f32c 进程启动 in...

网友评论

      本文标题:Thinkphp5+Workerman

      本文链接:https://www.haomeiwen.com/subject/cwvfmqtx.html