我有 javascript 将数组传递给 PHP:
var mapIDArray = ["4f8d7684791635ec2e000000", "4f8cbc087916359181000000"];
$.getJSON("rebound.php",
{
'mapIDs[]' : mapIDArray
},
function(output){
console.log(output);
}
);
在rebound.php中,我尝试读取传入的数组(var_dump、print_r等),如:
print_r($_GET['mapIDs[]']);
但没有运气...