总结:
1)foreach替代语法输出数组,这种写法很特别,第一次接触
2)get和post的数据处理过程,感觉理解起来相对容易
3)PHP的第一节课,相比之前JS知识的学习,要相对轻松一些
1、使用foreach与它的替代语法,在html中输出数组内容
实例
<?php // 创建数组 $kecheng = ['英语', '绘画', '街舞','围棋']; // 使用foreach()语句输出 foreach ($kecheng as $key=>$value) { echo $key+1 . ': ' . $value . '<br>'; } echo '<hr>'; // 使用php循环结构的替代语法 foreach ($kecheng as $kc): echo $kc . '<br>'; endforeach ?>
运行实例 »
点击 "运行实例" 按钮查看在线实例
2、演示get和post的数据处理过程
1)get的数据处理过程
实例
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>get数据处理</title> </head> <body> <form action="" method="get"> <label for="xm">姓名:</label> <!-- 将用户输入的内容动态添加到value字段中, 创建具有粘性的表单--> <input type="text" id="xm" name="xm" value="<?php echo isset($_GET['xm']) ? $_GET['xm'] : ''; ?>" placeholder="请输入姓名"> <label for="sfz">***号:</label> <input type="text" id="sfz" name="sfz" value="<?php echo isset($_GET['sfz']) ? $_GET['sfz'] : '';?>" placeholder="请输入***号码"> <button>查询</button> </form> </body> </html> <?php echo '<pre>'; print_r($_GET); ?>
运行实例 »
点击 "运行实例" 按钮查看在线实例
2)post的数据处理过程
实例
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>post数据处理</title> </head> <body> <form action="" method="post"> <label for="xm">姓名:</label> <!-- 将用户输入的内容动态添加到value字段中, 创建具有粘性的表单--> <input type="text" id="xm" name="xm" value="<?php echo isset($_POST['xm']) ? $_POST['xm'] : ''; ?>" placeholder="请输入姓名"> <label for="sfz">***号:</label> <input type="text" id="sfz" name="sfz" value="<?php echo isset($_POST['sfz']) ? $_POST['sfz'] : '';?>" placeholder="请输入***号码"> <button>查询</button> </form> </body> </html> <?php echo '<pre>'; print_r($_POST); ?>
运行实例 »
点击 "运行实例" 按钮查看在线实例