我有这样的网址,我们如何重温价值
喜欢" abc.org/result.php?rq=[1,2,3,4]&rq1=[5]
"等
任何人都可以帮我转换rq into array
result.php
答案 0 :(得分:1)
您可以使用json_decode
转换为数组
$a = json_decode($_GET['rq']);
print_r($a);//Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 )
答案 1 :(得分:1)
您可以尝试使用explode()
& array_map()
$rq = $_GET['rq'];
$arr = array_map(function($v){ return trim($v, ' []');}, explode(',', $rq));
print '<pre>';
print_r($arr);
print '</pre>';
答案 2 :(得分:0)
您也可以使用get请求:
Abc.com?req[]=1&req[]=2
$_GET['req']
Return
(1,2)