当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP http_build_query()用法及代码示例


http_build_query()函数是PHP中的内置函数,用于从关联(或索引)数组生成URL编码的查询字符串。

用法:

string http_build_query( $query_data, $numeric_prefix, $arg_separator, $enc_type = PHP_QUERY_RFC1738 )

参数:该函数接受上述和以下所述的四个参数:


  • $query_data:此参数保存包含以下属性的数组或对象:
    • 它可以是一维数组或多维数组。
    • 如果$query_data是对象,则仅将公共属性合并到结果中。
  • $numeric_prefix:如果在基本数组中使用了数字索引,则使用此参数,它将仅在基本数组中元素的数字索引之前。
  • $arg_separator:它用于分隔参数,但可以通过指定此参数来覆盖它。
  • $enc_type:其默认值为PHP_QUERY_RFC1738。

返回值:它返回URL编码的字符串。

以下示例程序旨在说明PHP中的http_build_query()函数:

程序1:

<?php 
$info = array( 
    'sudo' => 'placement', 
    'CPP' => 'course', 
    'FORK' => 'C', 
); 
  
echo http_build_query($info) . "#"; 
echo http_build_query($info, '', '&'); 
  
?>
输出:
sudo=placement&CPP=course&FORK=C#sudo=placement&CPP=course&FORK=C

程序2:

<?php 
$info = array('geeks', 'gfg' => 'sudo', 'placement' => 'hypertext processor'); 
  
echo http_build_query($info) . "$"; 
echo http_build_query($info, 'myvar_'); 
?>
输出:
0=geeks&gfg=sudo&placement=hypertext+processor$myvar_0=geeks&gfg=sudo&placement=hypertext+processor

参考: http://docs.php.net/manual/da/function.http-build-query.php



相关用法


注:本文由纯净天空筛选整理自Code_Mech大神的英文原创作品 PHP | http_build_query() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。