怎么监听某一个文件里面所有的方法 主要是监听api目录下所有文件里面的方法
workerman-json-rpc 整个里面有介绍 看到了
$statistic_address = 'udp://127.0.0.1:55656'; // 判断数据是否正确 if(empty($data['class']) || empty($data['method']) || !isset($data['param_array'])) { // 发送数据给客户端,请求包错误 return $connection->send(array('code'=>400, 'msg'=>'bad request', 'data'=>null)); } // 获得要调用的类、方法、及参数 $class = $data['class']; $method = $data['method']; $param_array = $data['param_array']; StatisticClient::tick($class, $method); $success = false; // 判断类对应文件是否载入 if(!class_exists($class)) { $include_file = __DIR__ . "/Services/$class.php"; if(is_file($include_file)) { require_once $include_file; } if(!class_exists($class) || !method_exists($class, $method)) { $code = 404; $msg = "class $class or method $method not found"; StatisticClient::report($class, $method, $success, $code, $msg, $statistic_address); // 发送数据给客户端 类不存在 return $connection->send(array('code'=>$code, 'msg'=>$msg, 'data'=>null)); } } // 调用类的方法 try { $ret = call_user_func_array(array($class, $method), $param_array); StatisticClient::report($class, $method, 1, 0, '', $statistic_address); // 发送数据给客户端,调用成功,data下标对应的元素即为调用结果 return $connection->send(array('code'=>0, 'msg'=>'ok', 'data'=>$ret)); } // 有异常 catch(Exception $e) { // 发送数据给客户端,发生异常,调用失败 $code = $e->getCode() ? $e->getCode() : 500; StatisticClient::report($class, $method, $success, $code, $e, $statistic_address); return $connection->send(array('code'=>$code, 'msg'=>$e->getMessage(), 'data'=>$e)); }
workerman-json-rpc
整个里面有介绍 看到了