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


PHP Request::getRootUri方法代码示例

本文整理汇总了PHP中Slim\Http\Request::getRootUri方法的典型用法代码示例。如果您正苦于以下问题:PHP Request::getRootUri方法的具体用法?PHP Request::getRootUri怎么用?PHP Request::getRootUri使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Slim\Http\Request的用法示例。


在下文中一共展示了Request::getRootUri方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getRequestPaths

 public static function getRequestPaths(\Slim\Http\Request $request)
 {
     $basePath = $request->getRootUri();
     if ($basePath === '' || substr($basePath, -1) != '/') {
         $basePath .= '/';
     }
     $host = $request->getHost();
     $protocol = $request->getScheme();
     $requestUri = $request->getRootUri() . $request->getResourceUri();
     return array('basePath' => $basePath, 'host' => $host, 'protocol' => $protocol, 'fullBasePath' => $protocol . '://' . $host . $basePath, 'requestUri' => $requestUri, 'fullUri' => $protocol . '://' . $host . $requestUri);
 }
开发者ID:jenky,项目名称:serapia,代码行数:11,代码来源:Application.php

示例2: defaultNotFound

 /**
  * Default Not Found handler
  */
 protected function defaultNotFound()
 {
     echo self::generateTemplateMarkup('404 Page Not Found', '<p>The page you are looking for could not be found. Check the address bar to ensure your URL is spelled correctly. If all else fails, you can visit our home page at the link below.</p><a href="' . $this->request->getRootUri() . '/">Visit the Home Page</a>');
 }
开发者ID:sydorenkovd,项目名称:Rest-slim-news,代码行数:7,代码来源:Slim.php

示例3: asset

 /**
  * @param string $path
  * @return string
  */
 public function asset($path)
 {
     return preg_replace('#/+#', '/', sprintf('%s%s', dirname($this->request->getRootUri()), $path));
 }
开发者ID:zoek1,项目名称:php-testing-tools,代码行数:8,代码来源:RouterExtension.php


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