Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将其转换为 PHP 中的数组?
&height=0&weight=2&width=10
我正在将一个数据从一个 jquery 函数传递.serialize()给一个 PHP 函数。
.serialize()
有任何想法吗?
可以在一行内完成。:)
parse_str('&height=0&weight=2&width=10', $array); print_r($array);
根据您正在执行的请求类型,它可能已经在一个数组中。查看有关$_GET和$_POST全局变量的 PHP 文档。
查看所述数组的内容。您可以使用函数print_r()来显示数组的内容。
print_r($_GET)
print_r($_POST)
通过项的键访问数组中的各个项。例如:
echo $_POST['height'];