本文整理汇总了PHP中Main::http_server方法的典型用法代码示例。如果您正苦于以下问题:PHP Main::http_server方法的具体用法?PHP Main::http_server怎么用?PHP Main::http_server使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Main
的用法示例。
在下文中一共展示了Main::http_server方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: params_http
/**
* 开启http服务 web api
* @param $opt
*/
public static function params_http($opt)
{
if (!isset($opt["http"])) {
return false;
}
if (isset($opt["host"]) && $opt["host"]) {
self::$host = $opt["host"];
}
if (isset($opt["port"]) && $opt["port"]) {
self::$port = $opt["port"];
}
$process = new swoole_process(array(new Main(), "http_run"));
$process->start();
self::$http_server = $process;
swoole_event_add($process->pipe, function ($pipe) use($process) {
$manager = new Manager();
$recv = $process->read();
$recv = explode("#@#", $recv);
$function = $recv[0] . "_cron";
$process->write(json_encode($manager->{$function}(json_decode($recv[1], true))));
});
return true;
}
示例2: start
public static function start()
{
if (file_exists(self::$pid_file)) {
die("Pid文件已存在!\n");
exit;
}
swoole_process::daemon();
$process = new swoole_process(array(new Main(), "http_run"));
$process->start();
self::$http_server = $process;
if (!function_exists("posix_getpid")) {
Main::log_write("Please install posix extension." . "\n");
exit;
}
Main::log_write("dddd ");
self::$pid = posix_getpid();
Main::log_write("pid " . self::$pid);
file_put_contents(self::$pid_file, self::$pid);
}