Kohana查询字符串URL扩展

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kohana查询字符串URL扩展相关的知识,希望对你有一定的参考价值。

  1. <?
  2. class url extends url_Core {
  3. public static function get_query_string(Array $queryVars, $keepOld = false) {
  4. $current = input::instance()->get();
  5.  
  6. if($keepOld) $new = array_merge($current, $queryVars);
  7. else $new = $queryVars;
  8.  
  9. return http_build_query($new);
  10. }
  11. }
  12.  
  13. ?>

以上是关于Kohana查询字符串URL扩展的主要内容,如果未能解决你的问题,请参考以下文章

如何匹配可以以查询字符串结尾的 url 中的文件扩展名?

使用jQuery / Javascript(查询字符串)获取查询字符串参数url值

使用 jQuery / Javascript (querystring) 获取查询字符串参数 url 值

用于防止缓存的 url.content 的 razor 扩展方法

PHP 扩展的Kohana HTML助手

php 后台转发和重定向的区别及kohana框架当前url加参数方式