本文整理汇总了PHP中Protocol::getHost方法的典型用法代码示例。如果您正苦于以下问题:PHP Protocol::getHost方法的具体用法?PHP Protocol::getHost怎么用?PHP Protocol::getHost使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Protocol
的用法示例。
在下文中一共展示了Protocol::getHost方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: createHttpHandler
/**
*
* @return SimpleHttpHandler|HttpTunnelHandler
*/
public function createHttpHandler()
{
$overrideHosts = $this->getOverrideHosts();
$ssl = "";
if ($overrideHosts) {
$s = $overrideHosts;
if (strlen($s) > 2 && $s[1] == ':') {
if ($s[0] == 's') {
$ssl = "ssl://";
}
$s = substr($s, 2);
}
$webCtx = strpos($s, "//");
if ($webCtx) {
$host = substr($s, 0, $webCtx);
} else {
$host = $s;
}
$idx = strpos($host, ':');
if ($idx) {
if ($webCtx) {
$port = substr($host, $idx + 1, $webCtx);
} else {
$port = substr($host, $idx + 1);
}
$host = substr($host, 0, $idx);
} else {
$port = "8080";
}
if ($webCtx) {
$webCtx = substr($s, $webCtx + 1);
}
$this->webContext = $webCtx;
} else {
$hostVec = Protocol::getHost();
if ($ssl = $hostVec[0]) {
$ssl .= "://";
}
$host = $hostVec[1];
$port = $hostVec[2];
}
$this->serverName = "{$ssl}{$host}:{$port}";
if (array_key_exists("X_JAVABRIDGE_REDIRECT", $_SERVER) || array_key_exists("HTTP_X_JAVABRIDGE_REDIRECT", $_SERVER)) {
return new SimpleHttpHandler($this, $ssl, $host, $port);
}
return new HttpTunnelHandler($this, $ssl, $host, $port);
}