PHP代碼/ index.php文件
<?php
var_dump($_POST);
?>
HTML代碼
<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" }
所以我想do是如何使用foreach將輸出格式化爲普通數組?
見['var_export'](http://us.php.net/var_expo RT)。 – DCoder 2013-03-09 07:01:26
那麼你想知道什麼?如何格式化var_dump或如何迭代和顯示數組? – RockyFord 2013-03-09 07:15:48
想要格式化它 – user2036613 2013-03-09 07:16:25