如何使用php获取查询字符串中的对象

时间:2016-03-22 15:16:54

标签: php

我有这个网址

http://localhost/url/stack.php?first=10&getthis=list&result=seats_booked[]=B2&seats_booked[]=B5&seats_booked[]=A20

$url = "first=10&getthis=list&result=seats_booked[]=B2&seats_booked[]=B5&seats_booked[]=A20";

parse_str($url);
echo  $seats_booked[0];

我想获取数组seat_booked[]的值。 我正在尝试此echo $seats_booked[0];,但它返回错误。

怎么能实现这个目标?提前谢谢。

0 个答案:

没有答案