Blogger Information
Blog 4
fans 0
comment 0
visits 2170
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php运行原理与实战--2019年7月22日23:29
gaoqi的博客
Original
656 people have browsed it

总结:
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

?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

 

QQ图片20190722231913.png

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);
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

QQ图片20190722232241.png

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);
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

QQ图片20190722232342.png

Correction status:qualified

Teacher's comments:对于get/post请求中的变量处理, 一直在web开发中的一个重点, 也是经常要做的事
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post