Blogger Information
Blog 18
fans 0
comment 0
visits 13276
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP字符串函数的学习小结
马晓宁
Original
842 people have browsed it

1. str_word_count() 函数对字符串中的单词进行计数

  1. <?php
  2. echo str_word_count("Ni hao!"); // 输出 2
  3. ?>

2.strrev() 函数反转字符串

  1. <?php
  2. echo strrev("Ni hao!"); // 输出 !oah iN
  3. ?>

3.str_shuffle() 函数随机打乱字符串顺序

  1. <?php
  2. echo str_shuffle("I love Shanghai");
  3. ?>

4.strtoupper() 函数字符转换为大写

  1. <?php
  2. echo strtoupper("Bei jing!"); // 输出 BEI JING!
  3. ?>

5.chunk_split() 函数把字符串分割为一连串更小的部分。

  1. <?php
  2. $str = "Beijing";
  3. echo chunk_split($str,1,"."); // 输出 B.e.i.j.i.n.g.
  4. ?>

6.hex2bin() 函数把十六进制值的字符串转换为 ASCII 字符。

  1. <?php
  2. echo hex2bin("48656c6c6f20576f726c6421");
  3. ?>

7.substr_count() 函数计算子串在字符串中出现的次数。

  1. <?php
  2. $str = "This is nice";
  3. echo strlen($str)."<br>"; // 使用 strlen() 来返回字符串长度
  4. echo substr_count($str,"is")."<br>"; // 字符串中 "is" 出现的次数
  5. echo substr_count($str,"is",2)."<br>"; // 字符串缩减为 "is is nice"
  6. echo substr_count($str,"is",3)."<br>"; // 字符串缩减为 "s is nice"
  7. echo substr_count($str,"is",3,3)."<br>"; // 字符串缩减为 "s i"
  8. ?>

8.str_repeat() 函数把字符串重复指定的次数。

  1. <?php
  2. echo str_repeat("Beijing",5);
  3. ?>

结果:Beijing Beijing Beijing Beijing Beijing


9.strpbrk() 函数在字符串中搜索指定字符中的任意一个

  1. <?php
  2. echo strpbrk("I love Beijing!","B");
  3. echo "<br>";
  4. echo strpbrk("I love Beijing!","b");
  5. ?>

结果:Beijing!


10.sha1() 函数计算字符串的 SHA-1 散列

  1. <?php
  2. $str = "Beijing";
  3. echo sha1($str);
  4. ?>

输出:7141d151711ec9f5c1a412229f6213dfa16e0c25


11.strcmp函数比较两个字符串。

  1. <?php
  2. echo strcmp("Hello","Hello");
  3. echo "<br>";
  4. echo strcmp("Hello","hELLo");
  5. ?>

结果:0

  • -1

12.parse_str() 函数把查询字符串解析到变量中。

  1. <?php
  2. parse_str("name=Tom&age=60",$myArray);
  3. print_r($myArray);
  4. ?>

总结: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