PHP可变变量的简单使用
Posted 程昱仲德
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP可变变量的简单使用相关的知识,希望对你有一定的参考价值。
知识点:
可变变量:简单说就是将一个变量的值用作另外一个变量的命名上,例如$a = ‘b‘;$$a就是$b
html代码:
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 </head> 6 <body> 7 <form action="show.php" method="post"> 8 <input name="user"><br> 9 <input name="age" ><br> 10 <input name="email"><br> 11 <input name="cellphone"><br> 12 <input type="submit"><br> 13 </form> 14 </body> 15 </html>
常见的php处理:
1 <?php
2 $user = $_POST[‘user‘]; 3 $age = $_POST[‘age‘]; 4 $email = $_POST[‘email‘]; 5 $cellphone = $_POST[‘cellphone‘]; 6 7 echo ‘姓名:‘.$user; 8 echo ‘年龄:‘.$age; 9 echo ‘邮箱:‘.$email; 10 echo ‘手机号:‘.$cellphone; 11 12 13
如果表单内容过多的话,这个赋值的操作对应也会很多,这里我们使用可变变量+foreach循环,可以方便很多,如下:
foreach($_POST as $key => $value){ $$key = $value; } echo ‘姓名:‘.$user; echo ‘年龄:‘.$age; echo ‘邮箱:‘.$email; echo ‘手机号:‘.$cellphone;
参考博文:http://blog.csdn.net/engine_1124/article/details/8660291
以上是关于PHP可变变量的简单使用的主要内容,如果未能解决你的问题,请参考以下文章