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


PHP SimpleUrl::asString方法代碼示例

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


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

示例1: assertPreserved

 function assertPreserved($string)
 {
     $url = new SimpleUrl($string);
     $this->assertEqual($url->asString(), $string);
 }
開發者ID:PublicityPort,項目名稱:OpenCATS,代碼行數:5,代碼來源:url_test.php

示例2: openFile

 /**
  *    Actually opens the low level socket.
  *    @param SimpleUrl $file       SimpleUrl file target.
  *    @param string $error         Recipient of error message.
  *    @param integer $timeout      Maximum time to wait for connection.
  *    @access protected
  */
 protected function openFile($file, &$error)
 {
     return @fopen($file->asString(), 'r');
 }
開發者ID:ngugijames,項目名稱:ThinkUp,代碼行數:11,代碼來源:socket.php

示例3: testDirectoriesAfterFilename

 function testDirectoriesAfterFilename()
 {
     $string = '../../index.php/foo/bar';
     $url = new SimpleUrl($string);
     $this->assertEqual($url->asString(), $string);
     $absolute = $url->makeAbsolute('http://www.domain.com/some/path/');
     $this->assertEqual($absolute->asString(), 'http://www.domain.com/index.php/foo/bar');
 }
開發者ID:ngugijames,項目名稱:ThinkUp,代碼行數:8,代碼來源:url_test.php

示例4: 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


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