本文整理匯總了PHP中Main::host方法的典型用法代碼示例。如果您正苦於以下問題:PHP Main::host方法的具體用法?PHP Main::host怎麽用?PHP Main::host使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Main
的用法示例。
在下文中一共展示了Main::host方法的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: 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"];
}
// 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;
}