PHP与Web页面交互操作实例分析(2)

$name = 'A&B C'; $name = urlencode($name); // URL 编码 echo "http://localhost/test.php?name=$name", "\n"; echo urldecode($name); // URL解码 //输出结果 ?name=A%26B+C A&B C

http_build_query(),利用http_build_query()函数可以将PHP关联数组转换为URL参数字符串。

$params = [ 'name' => 'test', 'hobby' => ['reading', 'running'] ]; $query = http_build_query($params); echo "http://localhost/test.php?$query"; //输出结果 ?name=test&hobby%5B0%5D=reading&hobby%5B1%5D=running

更多关于PHP相关内容感兴趣的读者可查看本站专题:《php程序设计安全教程》、《php安全过滤技巧总结》、《PHP基本语法入门教程》、《php面向对象程序设计入门教程》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/7bcd35adc87efbcb5eaa44d6262febf6.html