可以。URL是可传递关联数组,也可传递下标数组;而PHP中可以利用http_build_query()函数来通过get方式在URL中传递数组。http_build_query()用于从关联(或索引)数组生成URL编码的查询字符串,语法“http_build_query($query_data,$numeric_prefix,$arg_separator,$enc_type)”。
本教程操作环境:windows7系统、PHP8版、DELL G3电脑
PHP下利用get方式在URL中传递数组
在URL可以传递关联数组,也可传递下标数组。
最简单的方式就是使用PHP 自带的 http_build_query()函数
$parameters = [
'user' => array(
'name' => 'Bob Smith',
'age' => 47,
'sex' => 'M',
'dob' => '5/12/1956'
),
'pastimes' => array('golf', 'opera', 'poker', 'rap'),
'children' => array(
'bobby' => array('age'=>12, 'sex'=>'M'),
'sally' => array('age'=>8, 'sex'=>'F')
),
'CEO'
];
// 这里两种数组的方式能够进行混用定义,没有问题
http_build_query($data);
// 注意这里的结果会将参数中的特殊字符进行转义形成最终的结果查询串
还有就是直接进行参数拼接
以? 申明开始传递参数,用&连接各个参数
eg.
https://www.baidu.com?a=1&b=2&c=3
对于如果希望传递数组可以使用以下方式:
https://www.baidu.com?a[0]=0&a[1]=1&a[2]=2&a[3]=3&a[4]=4https://www.baidu.com?a[q]=0&a[w]=1&a[e]=2&a[r]=3&a[t]=4
注意这里的方括号需要进行转义,否则可能出现传递错误的情况。
扩展知识: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