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