Correcting teacher:查无此人
Correction status:qualified
Teacher's comments:完成的不错,函数常用的记住,不需要记特别多不常用的。
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>post</title>
</head>
<body>
<form action="" method="post">
<label for="email">邮箱:</label>
<input type="email" id="email" name="email" value="">
<label for="password">密码:</label>
<input type="password" id="password" name="password" value="">
<button>登录</button>
</form>
</body>
</html>
<?php
print_r($_POST);
?>
array_unique() 移除数组中的重复的值
array_push() 将一个或多个元素插入数组的末尾
array_pop() 删除数组中的最后一个元素
count() 数组中元素的数量
array_merge() 两个数组合并为一个数组
in_array() 数组中是否存在指定的值
sort() 对数值数组进行升序排序
rsort() 对数值数组进行降序排序
explode() 将字符串分割为数组
implode() 把数组元素组合为字符串
md5() 将字符串进行md5加密
strtolower() 将字符串转化为小写
strtoupper 将字符串转化为大写
strlen() 获取字符串长度
trim() 去除字符串首尾处的空白字符(或者其他字符)
ltrim() 去除字符串开头的空白字符
rtrim() 去除字符串结尾的空白字符
str_replace() 字符串替换
strpbrk() 字符串中查找一组字符是否存在
1、对于POST传值 在form表单中将会更加的安全 GET传值容易暴露用户信息
2、POST适用于多个场景,使用在什么样的场景,需要行资信判断
3、数组函数、字符串函数的使用以及方式,更好的了解PHP的功能!