PHP的http_build_query()函数使用方法_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > PHP的http_build_query()函数使用方法

PHP的http_build_query()函数使用方法

 2018/3/17 23:47:31  青春..荒唐  程序员俱乐部  我要评论(0)
  • 摘要:(1)作用http_build_query()函数的作用是使用给出的关联(或下标)数组生成一个经过URL-encode的请求字符串。(2)语法写法格式:http_build_query(mixed$query_data[,string$numeric_prefix[,string$arg_separator[,int$enc_type=PHP_QUERY_RFC1738]]])(3)案例打个比方:<?php$user=array('name'=>'Tony','age'=>
  • 标签:方法 PHP 使用 函数 使用方法 HTTP

(1)作用

http_build_query()函数的作用是使用给出的关联(或下标)数组生成一个经过 URL-encode 的请求字符串。

?

(2)语法

写法格式:http_build_query ( mixed $query_data [, string $numeric_prefix [, string $arg_separator [, int $enc_type = PHP_QUERY_RFC1738 ]]] )

?

(3)案例

打个比方:

class="php"><?php
	$user = array('name' => 'Tony', 'age' => 23);
	$userInfo = http_build_query($user);
	echo $userInfo;
?>

我们输出可以得到:name=Tony&age=23

?

(4)场景

这个有什么用呢,这是模拟http请求的,把得到的数据data通过函数URL-encode,一般是用在回调。

?

?

?

?

?

发表评论
用户名: 匿名