当前位置: 首页>>代码示例>>PHP>>正文


PHP Protocol::getHost方法代码示例

本文整理汇总了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);
 }
开发者ID:robocoder,项目名称:solublecomponents,代码行数:51,代码来源:Protocol.php


注:本文中的Protocol::getHost方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。