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


PHP Uri::isDefaultPort方法代码示例

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


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

示例1: normalize

 /**
  * Returns a normalized URI.
  *
  * The scheme and host component are already normalized to lowercase per PSR-7 UriInterface.
  * This methods adds additional normalizations that can be configured with the $flags parameter.
  *
  * PSR-7 UriInterface cannot distinguish between an empty component and a missing component as
  * getQuery(), getFragment() etc. always return a string. This means the URIs "/?#" and "/" are
  * treated equivalent which is not necessarily true according to RFC 3986. But that difference
  * is highly uncommon in reality. So this potential normalization is implied in PSR-7 as well.
  *
  * @param UriInterface $uri   The URI to normalize
  * @param int          $flags A bitmask of normalizations to apply, see constants
  *
  * @return UriInterface The normalized URI
  * @link https://tools.ietf.org/html/rfc3986#section-6.2
  */
 public static function normalize(UriInterface $uri, $flags = self::PRESERVING_NORMALIZATIONS)
 {
     if ($flags & self::CAPITALIZE_PERCENT_ENCODING) {
         $uri = self::capitalizePercentEncoding($uri);
     }
     if ($flags & self::DECODE_UNRESERVED_CHARACTERS) {
         $uri = self::decodeUnreservedCharacters($uri);
     }
     if ($flags & self::CONVERT_EMPTY_PATH && $uri->getPath() === '' && ($uri->getScheme() === 'http' || $uri->getScheme() === 'https')) {
         $uri = $uri->withPath('/');
     }
     if ($flags & self::REMOVE_DEFAULT_HOST && $uri->getScheme() === 'file' && $uri->getHost() === 'localhost') {
         $uri = $uri->withHost('');
     }
     if ($flags & self::REMOVE_DEFAULT_PORT && $uri->getPort() !== null && Uri::isDefaultPort($uri)) {
         $uri = $uri->withPort(null);
     }
     if ($flags & self::REMOVE_DOT_SEGMENTS && !Uri::isRelativePathReference($uri)) {
         $uri = $uri->withPath(UriResolver::removeDotSegments($uri->getPath()));
     }
     if ($flags & self::REMOVE_DUPLICATE_SLASHES) {
         $uri = $uri->withPath(preg_replace('#//++#', '/', $uri->getPath()));
     }
     if ($flags & self::SORT_QUERY_PARAMETERS && $uri->getQuery() !== '') {
         $queryKeyValues = explode('&', $uri->getQuery());
         sort($queryKeyValues);
         $uri = $uri->withQuery(implode('&', $queryKeyValues));
     }
     return $uri;
 }
开发者ID:nystudio107,项目名称:instantanalytics,代码行数:47,代码来源:UriNormalizer.php

示例2: testIsDefaultPort

 /**
  * @dataProvider getPortTestCases
  */
 public function testIsDefaultPort($scheme, $port, $isDefaultPort)
 {
     $uri = $this->getMock('Psr\\Http\\Message\\UriInterface');
     $uri->expects($this->any())->method('getScheme')->will($this->returnValue($scheme));
     $uri->expects($this->any())->method('getPort')->will($this->returnValue($port));
     $this->assertSame($isDefaultPort, Uri::isDefaultPort($uri));
 }
开发者ID:nystudio107,项目名称:instantanalytics,代码行数:10,代码来源:UriTest.php


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