博客列表 >字符串函数实例演示

字符串函数实例演示

李玉峰
李玉峰原创
2022年04月23日 23:15:43408浏览

字符串函数

  1. <?php
  2. // !1.将字符串转化为大写:strtoupper
  3. $str = 'hell0 word';
  4. echo strtoupper($str) . '<br>';
  5. // !2.将字符串转化为小写:strtolower
  6. $str = 'HELLO WORD';
  7. echo strtolower($str) . '<br>';
  8. // !3.将字符串的首字母转换为大写:ucfirst
  9. $str = 'hell0 word';
  10. echo ucfirst($str) . '<br>';
  11. // !4.将字符串中每个单词的首字母转换为大写:ucwords
  12. echo ucwords($str) . '<br>';
  13. // !5.反转字符串:strrev
  14. $str = 'hell0 word';
  15. echo strrev($str) . '<br>';
  16. //!6.返回字符串中单词的使用情况:str_word_count
  17. $str = 'hell0 word li lao shi';
  18. $str = str_word_count($str);
  19. printf('<pre>%s</pre>',print_r($str,true));
  20. echo '<br>';
  21. //!7 .加密:md5
  22. $str = '123456';
  23. echo md5($str) . '<br>';
  24. if (md5($str) === 'e10adc3949ba59abbe56e057f20f883e') {
  25. echo "相等";
  26. }else{
  27. echo '不相等';
  28. };
  29. //!8.addslashes — 使用反斜线引用字符串
  30. $str = "Is your name O'reilly?";
  31. echo $str . '<br>';
  32. // 输出: Is your name O\'reilly?
  33. echo addslashes($str). '<br>';
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议