PHP 代码/index.php
<?php
var_dump($_POST);
?>
代码
<html>
<body>
<form action="index.php" method="post">
Name: <input type="text" name="fname" />
Age: <input type="text" name="age" />
Addess: <input type="text" name="ads" />
<input type="submit" /> </form>
</body>
</html>
输出
array(3) { ["fname"]=> string(5) "USER_INPUT_NAME" ["age"]=> string(6) "USER_INPUT_AGE" ["ads"]=> string(5) "USER_INPUT_ADDRESS" }
所以我想做的是如何使用 foreach 将该输出格式化为普通数组?