欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php http_build_query() 构建查询参数的小例子

程序员文章站 2022-04-21 18:35:09
...
  1. /**
  2. * http_build_query() 构建查询参数
  3. * edit: bbs.it-home.org
  4. */
  5. $vars = array('page' => 4, 'search' => 'this & that');
  6. $qs = http_build_query($vars);
  7. $url = 'http://bbs.it-home.org/search.php?' . $qs;
  8. $page = file_get_contents($url);
  9. ?>
复制代码