Correcting teacher:查无此人
Correction status:qualified
Teacher's comments:完成的不错,继续努力
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>登录注册页面</title>
</head>
<body>
<form action="" method="post">
<label for="email">邮箱:</label>
<input type="email" id="email" name="email">
<label for="password">密码:</label>
<input type="password" name="password" id="email">
<button>登录</button>
</form>
</body>
</html>
<?php
print_r($_POST);
<?php
//转变为小写
$int = 'ABc';
echo strtolower($int);
echo '<hr>';
//转变为大写
$int1 ='abc';
echo strtoupper($int1);
echo '<hr>';
//获取字符串长度
$int2= '这串123';
echo strlen($int2);
echo '<hr>';
//去除字符串首尾的空格
$int3 = ' 前面有空格 ';
echo trim($int3);
echo '<hr>';
//字符串的替换
$int4 ='abc';
echo str_replace("abc","123",$int4);
echo '<hr>';
//字符串查找一组字符串是否存在
echo strpbrk('i love china','l');
echo '<hr>';
//字符串分割为数组
$int5 ="我 是 木 易";
print_r(explode(" ",$int5));
echo '<hr>';
//将数组元素组合成字符串
$arr = array(
'我',
'在',
'学',
'php'
);
echo implode($arr);
echo '<hr>';
//md5(加密)
$int6 = 'abc123456';
echo md5($int6);![]