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


PHP HTMLTags_URL::set_scheme方法代碼示例

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


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

示例1: get_current_url

 public function get_current_url()
 {
     $current_url = new HTMLTags_URL();
     if ($_SERVER['HTTPS']) {
         $current_url->set_scheme('https');
     } else {
         $current_url->set_scheme('http');
     }
     if (preg_match('/([-\\w.]+):(\\d+)/', $_SERVER['HTTP_HOST'], $matches)) {
         $current_url->set_domain($matches[1]);
         $current_url->set_port($matches[2]);
     } else {
         $current_url->set_domain($_SERVER['HTTP_HOST']);
     }
     $file = $_SERVER['REQUEST_URI'];
     if (preg_match('/(.*)\\?/', $file, $matches)) {
         $file = $matches[1];
     }
     $current_url->set_file($file);
     foreach (array_keys($_GET) as $get_var_key) {
         $current_url->set_get_variable($get_var_key, $_GET[$get_var_key]);
     }
     return $current_url;
 }
開發者ID:saulhoward,項目名稱:haddock-cms,代碼行數:24,代碼來源:PublicHTML_RedirectionManager.inc.php

示例2: parse_and_make_url

 /**
  * Parse a URL string and create an object.
  *
  * It makes more sense for this to be a static factory function
  * like this that the method above.
  */
 public static function parse_and_make_url($url_str)
 {
     $url = new HTMLTags_URL();
     #echo "\$url_str: $url_str\n";
     /*
      * Is the scheme set?
      */
     if (preg_match('{^([a-zA-Z]+)://(.+)}', $url_str, $matches)) {
         $url->set_scheme($matches[1]);
         $url_without_scheme_and_punc = $matches[2];
         if (preg_match('{^([^/]+)(.+)}', $url_without_scheme_and_punc, $matches)) {
             $url->set_domain($matches[1]);
             $url_str = $matches[2];
         }
     }
     if (preg_match('{([^?]*)(?:\\?((?:[^=]+=[^=&]+)(?:&[^=]+=[^=&]+)*))?}', $url_str, $matches)) {
         #echo 'print_r($matches): ' . "\n";
         #print_r($matches);
         $file = $matches[1];
         if (isset($matches[2])) {
             $get_vars = $matches[2];
         } else {
             $get_vars = NULL;
         }
         $url->set_file($file);
         foreach (explode('&', $get_vars) as $key_value_pair) {
             if (preg_match('/([^=]+)=([^=]+)/', $key_value_pair, $matches)) {
                 $url->set_get_variable($matches[1], $matches[2]);
             }
         }
     }
     #print_r($url);
     #
     #exit;
     return $url;
 }
開發者ID:saulhoward,項目名稱:haddock-cms,代碼行數:42,代碼來源:HTMLTags_URL.inc.php


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