我正在尝试将数组发布到另一个要处理的文件。数组在下面,它正确地填充了行。我在脚本标记的开头对其进行了初始化以使其成为全局。
在 JavaScript 中:
var locationsall = new Array();
locationsall[counter] = new Array();
locationsall[counter][0] = address;
locationsall[counter][1] = lat;
locationsall[counter][2] = lng;
在我的表格中,我尝试将其序列化并发布
<input type="hidden" name="result" value="<?php echo serialize($locationsall); ?>">
当我尝试反序列化它时,它没有任何东西..
$locations = unserialize($_POST['result']);
我在这里做错了什么?