Blogger Information
Blog 26
fans 1
comment 0
visits 22292
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP第课 POST和常用的数组、字符串函数 11月16日
孤忆寻昔R
Original
719 people have browsed it

作业一

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>post</title>
  6. </head>
  7. <body>
  8. <form action="" method="post">
  9. <label for="email">邮箱:</label>
  10. <input type="email" id="email" name="email" value="">
  11. <label for="password">密码:</label>
  12. <input type="password" id="password" name="password" value="">
  13. <button>登录</button>
  14. </form>
  15. </body>
  16. </html>
  17. <?php
  18. print_r($_POST);
  19. ?>

作业二

  1. array_unique() 移除数组中的重复的值
  2. array_push() 将一个或多个元素插入数组的末尾
  3. array_pop() 删除数组中的最后一个元素
  4. count() 数组中元素的数量
  5. array_merge() 两个数组合并为一个数组
  6. in_array() 数组中是否存在指定的值
  7. sort() 对数值数组进行升序排序
  8. rsort() 对数值数组进行降序排序
  9. explode() 将字符串分割为数组
  10. implode() 把数组元素组合为字符串
  11. md5() 将字符串进行md5加密
  12. strtolower() 将字符串转化为小写
  13. strtoupper 将字符串转化为大写
  14. strlen() 获取字符串长度
  15. trim() 去除字符串首尾处的空白字符(或者其他字符)
  16. ltrim() 去除字符串开头的空白字符
  17. rtrim() 去除字符串结尾的空白字符
  18. str_replace() 字符串替换
  19. strpbrk() 字符串中查找一组字符是否存在


总结

1、对于POST传值 在form表单中将会更加的安全 GET传值容易暴露用户信息
2、POST适用于多个场景,使用在什么样的场景,需要行资信判断
3、数组函数、字符串函数的使用以及方式,更好的了解PHP的功能!

Correcting teacher:查无此人查无此人

Correction status:qualified

Teacher's comments:完成的不错,函数常用的记住,不需要记特别多不常用的。
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