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


PHP SimpleUrl::getPath方法代碼示例

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


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

示例1: testParseMultipleParameters

 function testParseMultipleParameters()
 {
     $url = new SimpleUrl("/?a=A&b=B");
     $this->assertEqual($url->getPath(), "/");
     $this->assertEqual(count($request = $url->getRequest()), 2);
     $this->assertEqual($request["a"], "A");
     $this->assertEqual($request["b"], "B");
 }
開發者ID:adamfranco,項目名稱:harmoni,代碼行數:8,代碼來源:http_test.php

示例2: getBaseCookieValue

 /**
  *    Reads the current cookies within the base URL.
  *    @param string $name     Key of cookie to find.
  *    @param SimpleUrl $base  Base URL to search from.
  *    @return string/boolean  Null if there is no base URL, false
  *                            if the cookie is not set.
  *    @access public
  */
 function getBaseCookieValue($name, $base)
 {
     if (!$base) {
         return null;
     }
     return $this->getCookieValue($base->getHost(), $base->getPath(), $name);
 }
開發者ID:Boris-de,項目名稱:videodb,代碼行數:15,代碼來源:user_agent.php

示例3: stretch

 /**
  *    Adds another location to the realm.
  *    @param SimpleUrl $url    Somewhere in realm.
  *    @access public
  */
 function stretch($url)
 {
     $this->root = $this->getCommonPath($this->root, $url->getPath());
 }
開發者ID:GerHobbelt,項目名稱:simpletest,代碼行數:9,代碼來源:authentication.php

示例4: testMakingCoordinateUrlAbsolute

 function testMakingCoordinateUrlAbsolute()
 {
     $url = new SimpleUrl('?1,2');
     $this->assertEqual($url->getPath(), '');
     $absolute = $url->makeAbsolute('http://host.com/I/am/here/');
     $this->assertEqual($absolute->getScheme(), 'http');
     $this->assertEqual($absolute->getHost(), 'host.com');
     $this->assertEqual($absolute->getPath(), '/I/am/here/');
     $this->assertEqual($absolute->getX(), 1);
     $this->assertEqual($absolute->getY(), 2);
 }
開發者ID:PublicityPort,項目名稱:OpenCATS,代碼行數:11,代碼來源:url_test.php

示例5: getBaseCookieValue

 /**
  *    Reads the current cookies for the base URL.
  *    @param string $name   Key of cookie to find.
  *    @return string        Null if there is no base URL, false
  *                          if the cookie is not set.
  *    @access public
  */
 function getBaseCookieValue($name)
 {
     if (!$this->getBaseUrl()) {
         return null;
     }
     $url = new SimpleUrl($this->getBaseUrl());
     return $this->getCookieValue($url->getHost(), $url->getPath(), $name);
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:15,代碼來源:user_agent.php

示例6: assertUrl

 function assertUrl($raw, $parts, $params = false)
 {
     if (!is_array($params)) {
         $params = array();
     }
     $url = new SimpleUrl($raw);
     $this->assertIdentical($url->getScheme(), $parts[0], "[{$raw}] scheme->%s");
     $this->assertIdentical($url->getUsername(), $parts[1], "[{$raw}] username->%s");
     $this->assertIdentical($url->getPassword(), $parts[2], "[{$raw}] password->%s");
     $this->assertIdentical($url->getHost(), $parts[3], "[{$raw}] host->%s");
     $this->assertIdentical($url->getPort(), $parts[4], "[{$raw}] port->%s");
     $this->assertIdentical($url->getPath(), $parts[5], "[{$raw}] path->%s");
     $this->assertIdentical($url->getTld(), $parts[6], "[{$raw}] tld->%s");
     $this->assertIdentical($url->getEncodedRequest(), $parts[7], "[{$raw}] encoded->%s");
     $query = new SimpleQueryString();
     foreach ($params as $key => $value) {
         $query->add($key, $value);
     }
     $this->assertIdentical($url->getRequest(), $query, "[{$raw}] request->%s");
     $this->assertIdentical($url->getFragment(), $parts[8], "[{$raw}] fragment->%s");
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:21,代碼來源:http_test.php

示例7: selectAsPairs

 /**
  *    Uses a URL to sift relevant cookies by host and
  *    path. Results are list of strings of form "name=value".
  *    @param SimpleUrl $url       Url to select by.
  *    @return array               Valid name and value pairs.
  *    @access public
  */
 function selectAsPairs($url)
 {
     $pairs = array();
     foreach ($this->cookies as $cookie) {
         if ($this->isMatch($cookie, $url->getHost(), $url->getPath(), $cookie->getName())) {
             $pairs[] = $cookie->getName() . '=' . $cookie->getValue();
         }
     }
     return $pairs;
 }
開發者ID:hoodoogurus,項目名稱:dotprojecteap,代碼行數:17,代碼來源:cookies.php

示例8: testDOSDirnameAfterFile

 function testDOSDirnameAfterFile()
 {
     $url = new SimpleUrl('file://C:\\config.sys');
     $this->assertEqual($url->getScheme(), 'file');
     $this->assertIdentical($url->getHost(), false);
     $this->assertEqual($url->getPath(), '/C:/config.sys');
 }
開發者ID:ngugijames,項目名稱:ThinkUp,代碼行數:7,代碼來源:url_test.php

示例9: fetch

 /**
  * @param SimpleUrl
  * @param SimpleEncoding
  * @return k_ActingAsSimpleHttpResponse
  */
 protected function fetch(SimpleUrl $url, SimpleEncoding $parameters)
 {
     // extract primitives from SimpleTest abstractions
     $url_path = $url->getPath();
     $url_query = array();
     parse_str(str_replace('?', '', $url->getEncodedRequest()), $url_query);
     $method = $parameters->getMethod();
     $data = array();
     foreach ($parameters->getAll() as $pair) {
         $data[$pair->getKey()] = $pair->getValue();
     }
     if (!in_array($url->getHost(), array("", $this->servername))) {
         return new k_ActingAsSimpleHttpResponse($url, $data, array("HTTP/1.1 502"), "External URL requested: " . $url->asString(), $method);
     }
     // set up a mocked environment
     $server = array('SERVER_NAME' => $this->servername, 'REQUEST_METHOD' => $method, 'REQUEST_URI' => $url_path);
     $headers = new k_VirtualHeaders();
     $this->authenticator->addHeaders($headers, $url);
     foreach ($this->additional_headers as $line) {
         $headers->addHeaderLine($line);
     }
     $socket_buffer = new k_VirtualSocketBuffer();
     $parameters->writeHeadersTo($socket_buffer);
     foreach ($socket_buffer->getLines() as $line) {
         $headers->addHeaderLine($line);
     }
     $superglobals = new k_adapter_MockGlobalsAccess($url_query, $data, $server, $headers->headers());
     $response = k()->setContext(new k_HttpRequest("", null, $this->identity_loader, $this->language_loader, $this->translator_loader, $superglobals, $this->cookie_access, $this->session_access))->setComponentCreator($this->components)->setCharsetStrategy($this->charset_strategy)->run($this->root_class_name);
     $output = new k_SimpleOutputAccess();
     $response->out($output);
     return $output->toSimpleHttpResponse($url, $data, $method);
 }
開發者ID:harrysame,項目名稱:PHP-MySQL,代碼行數:37,代碼來源:virtualbrowser.inc.php

示例10: assertUrl

 function assertUrl($raw, $parts, $params = false) {
     if (! is_array($params)) {
         $params = array();
     }
     $url = new SimpleUrl($raw);
     $this->assertIdentical($url->getScheme(), $parts[0], "[$raw] scheme->%s");
     $this->assertIdentical($url->getUsername(), $parts[1], "[$raw] username->%s");
     $this->assertIdentical($url->getPassword(), $parts[2], "[$raw] password->%s");
     $this->assertIdentical($url->getHost(), $parts[3], "[$raw] host->%s");
     $this->assertIdentical($url->getPort(), $parts[4], "[$raw] port->%s");
     $this->assertIdentical($url->getPath(), $parts[5], "[$raw] path->%s");
     $this->assertIdentical($url->getTld(), $parts[6], "[$raw] tld->%s");
     $this->assertIdentical($url->getEncodedRequest(), $parts[7], "[$raw] encoded->%s");
     $this->assertIdentical($url->getRequest(), $params, "[$raw] request->%s");
     $this->assertIdentical($url->getFragment(), $parts[8], "[$raw] fragment->%s");
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:16,代碼來源:url_test.php


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