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 做一个小项目,现在我需要知道 php 中的 $_POST 方法实际上返回了什么?它是一个数组还是一些键/值对或究竟是什么?我无法找到相同的确切信息。请帮助我理解这些东西。提前致谢!
var_dump($_POST);
是的,它是一个数组。试试官方文档
它是一个关联数组,包含使用 post 方法从 html 表单发送的内容。
php.net:
通过 HTTP POST 方法传递给当前脚本的变量关联数组。