Blogger Information
Blog 39
fans 0
comment 0
visits 30652
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP:十个字符串函数
Original
514 people have browsed it

十个字符串函数

  1. <?php
  2. // 10.数组格式化打印输出
  3. $arr=['我','是','一匹','来自北方的','狼'];
  4. printf('<pre>%s</pre>',print_r($arr,true));
  5. echo is_array($arr);
  6. echo '<hr>';
  7. // 9.将一个一维数组的值转化为字符串
  8. $str = implode('',$arr);
  9. echo $str;
  10. echo '<hr>';
  11. // 8.返回字符串的子串
  12. echo substr($str,6,18);
  13. echo '<hr>';
  14. // 7.返回字符串的子串
  15. $arr1 = '马';
  16. echo substr_replace($str,$arr1,27);
  17. echo '<hr>';
  18. // 6.字符串转时间戳
  19. $time = '10:30';
  20. echo strtotime($time);
  21. echo '<hr>';
  22. // 5.返回中英文字符长度(
  23. echo $str,'<br>';
  24. echo '中文字符长度:'.mb_strlen($str),'<br>';
  25. echo '英文字符长度:'.strlen($str);
  26. echo '<hr>';
  27. // 4.计算指定文件的 MD5/sha1散列值
  28. echo $str,'<br>';
  29. echo 'md5 : '.md5($str),'<br>';
  30. echo 'sha1 : '.sha1($str),'<br>';
  31. echo '<hr>';
  32. // 3.编码 URL 字符串
  33. echo urlencode($str);
  34. echo '<hr>';
  35. // 2.解码已编码的 URL 字符串
  36. echo urldecode('%E6%88%91%E6%98%AF%E4%B8%80%E5%8C%B9%E6%9D%A5%E8%87%AA%E5%8C%97%E6%96%B9%E7%9A%84%E7%8B%BC');
  37. echo '<hr>';
  38. // 1.反转字符串
  39. echo $str.'length : '.strlen($str);

运行效果

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