我的登录是走的异步,登录成功后把userid存入$_SESSION中,然后用户发布消息,在主进程中获取$_SESSION,但是在主进程中这个$_SESSION获取不到,为什么?怎么才可以获取到?...
$task = new AsyncTcpConnection('Text://127.0.0.1:8281'); $task->connect(); $task_data = array( 'function'=>'login', 'args'=>$args, ); $ta...
<?php use \GatewayWorker\Lib\Gateway; use \Workerman\Worker; use \Workerman\Connection\AsyncTcpConnection; use \Applications\YourApp\Controller\MyWm; use \Applications\YourApp\Database\MySql; require_once _...
问题: 我发送一个信息,要求在明天中午12:00点,发给所有在线用户,然后关闭此定时器。, 我的实现: $time_interval =60; \Workerman\Lib\Timer::add($time_interval, function($info,$onlinetime) { if(time()>=$onlinetime) { $info=json_encode($in...
$class = $message_data;//类 $method = $message_data;//方法 $args = $message_data;//参数 if(file_exists(__DIR__.'/Controller/'.$class.'.class.php')) { require_once __DIR__.'/Controller/'.$...