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


PHP Uri::getUserInfo方法代碼示例

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


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

示例1: testGetUserInfo

 /**
  * Test that we get the correct userInfo
  *
  * @param string $uriString
  * @param array  $parts
  * @dataProvider uriWithPartsProvider
  */
 public function testGetUserInfo($uriString, $parts)
 {
     $uri = new Uri($uriString);
     if (isset($parts['userInfo'])) {
         $this->assertEquals($parts['userInfo'], $uri->getUserInfo());
     } else {
         $this->assertNull($uri->getUserInfo());
     }
 }
開發者ID:navassouza,項目名稱:zf2,代碼行數:16,代碼來源:UriTest.php

示例2: testParseTwice

 public function testParseTwice()
 {
     $uri = new Uri();
     $uri->parse('http://user@example.com:1/absolute/url?query#fragment');
     $uri->parse('/relative/url');
     $this->assertNull($uri->getScheme());
     $this->assertNull($uri->getHost());
     $this->assertNull($uri->getUserInfo());
     $this->assertNull($uri->getPort());
     $this->assertNull($uri->getQuery());
     $this->assertNull($uri->getFragment());
 }
開發者ID:pnaq57,項目名稱:zf2demo,代碼行數:12,代碼來源:UriTest.php

示例3: parse

 /**
  * @inheritdoc
  */
 public function parse($uri)
 {
     $uri = new Uri($uri);
     return $this->formatResults(['scheme' => $uri->getScheme(), 'userinfo' => $uri->getUserInfo(), 'host' => $uri->getHost(), 'port' => $uri->getPort(), 'path' => $uri->getPath(), 'query' => $uri->getQuery(), 'fragment' => $uri->getFragment()]);
 }
開發者ID:nyamsprod,項目名稱:uri-parser-benchmarks,代碼行數:8,代碼來源:Zend.php

示例4: getUserInfo

 /**
  * Get the User-info (usually user:password) part
  *
  * @return string|null
  */
 public function getUserInfo()
 {
     return $this->uri->getUserInfo();
 }
開發者ID:sunnyct,項目名稱:silexcmf-core,代碼行數:9,代碼來源:Uri.php


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