當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Uri::validateHost方法代碼示例

本文整理匯總了PHP中Zend\Uri\Uri::validateHost方法的典型用法代碼示例。如果您正苦於以下問題:PHP Uri::validateHost方法的具體用法?PHP Uri::validateHost怎麽用?PHP Uri::validateHost使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend\Uri\Uri的用法示例。


在下文中一共展示了Uri::validateHost方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: fromString

 public static function fromString($headerLine)
 {
     $header = new static();
     list($name, $value) = explode(': ', $headerLine, 2);
     // check to ensure proper header type for this factory
     if (strtolower($name) !== 'location') {
         throw new Exception\InvalidArgumentException('Invalid header line for Location string: "' . $name . '"');
     }
     if (!Uri::validateHost($value)) {
         throw new Exception\InvalidArgumentException('Invalid URI value for Location: "' . $value . '"');
     }
     // @todo implementation details
     $header->value = $value;
     return $header;
 }
開發者ID:bradley-holt,項目名稱:zf2,代碼行數:15,代碼來源:Location.php

示例2: testValidateHostInvalid

 /**
  * Check that invalid hosts are invalid according to validateHost()
  *
  * @param string $host
  * @dataProvider invalidHostProvider
  */
 public function testValidateHostInvalid($host)
 {
     $this->assertFalse(Uri::validateHost($host));
 }
開發者ID:navassouza,項目名稱:zf2,代碼行數:10,代碼來源:UriTest.php

示例3: setUri

 /**
  * Set the URI/URL for this request, this can be a string or an instance of Zend\Uri\Http
  *
  * @throws Exception\InvalidArgumentException
  * @param string|HttpUri $uri
  * @return Request
  */
 public function setUri($uri)
 {
     if (is_string($uri)) {
         if (!\Zend\Uri\Uri::validateHost($uri)) {
             throw new Exception\InvalidArgumentException('Invalid URI passed as string');
         }
     } elseif (!$uri instanceof \Zend\Uri\Http) {
         throw new Exception\InvalidArgumentException('URI must be an instance of Zend\\Uri\\Http or a string');
     }
     $this->uri = $uri;
     return $this;
 }
開發者ID:bradley-holt,項目名稱:zf2,代碼行數:19,代碼來源:Request.php


注:本文中的Zend\Uri\Uri::validateHost方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。