1. 练习post传值(手写)
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<form action="" method="post">
<label for="usr">登录名:</label><input type="text" id="usr" name="usrname" value="" >
<label for="password">密码:</label><input type="password" id="password" name="password" value="" >
<button>提交</button>
</form>
</body>
</html>
<?php
print_r($_POST);//用post请求更安全,请看下图
?>
2. 函数自行学习一些
<?php
echo '系统函数有以下常用类:
String 字符串操作
Array 数组操作
MySQLi 数据库操作
Filesystem 文件类型
Mail 数学函数
HTTP 服务器发送信息操作
Date 日期
Calendar 日历
';
echo '<hr/>';
echo '以下为字符串操作函数:';
echo '<hr/>';
echo strtolower('GUOJING');
echo '<hr/>';
echo strlen('anguoguo');
echo '<hr/>';
// $a = $_GET('A');
echo trim(' 去掉空格 ');
echo '<hr/>';
$b = '是的,you are right!';
echo str_replace('是的','Yes',$b);
echo '<hr/>';
$arr=[
'帅气',
'的' ,
'我',
];
echo implode('--',$arr);
echo '<hr/>';
echo md5('anguoguo'); //加密成32位的码,一般用于用户密码
?>
运行效果如下图: