当前位置:Gxlcms > PHP教程 > php替换网址中参数变量的代码

php替换网址中参数变量的代码

时间:2021-07-01 10:21:17 帮助过:3人阅读

  1. /**
  2. * 将URL中的某参数设为某值
  3. * link:bbs.it-home.org
  4. * date:2013/2/27
  5. */
  6. function url_set_value($url,$key,$value)
  7. {
  8. $a=explode('?',$url);
  9. $url_f=$a[0];
  10. $query=$a[1];
  11. parse_str($query,$arr);
  12. $arr[$key]=$value;
  13. return $url_f.'?'.http_build_query($arr);
  14. }
  15. ?>

人气教程排行