当前位置: 首页>>代码示例>>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;未经允许,请勿转载。