我需要ID
显示URL
。
我可以使用ID's
中的$_GET
来访问php
但是当它们嵌套时,如下面的示例所示,我无法获得ID
..
示例:
index.php?id[sub1]=1789&id[sub2]=1789
如果有人可以帮助您使用php
或jQuery
来解决问题,我会非常高兴。
答案 0 :(得分:0)
<?php
$str="index.php?id[sub1]=1789&id[sub2]=1789";
$x=parse_str($str,$out);
print_r($out); //loop through this
Array
(
[index_php?id] => Array
(
[sub1] => 1789
)
[id] => Array
(
[sub2] => 1789
)
)
答案 1 :(得分:0)
假设ID始终相同:
if (isset($_GET['id'])) {
$id = is_array($_GET['id']) ? current($_GET['id']) : $_GET['id'];
}