PHP 字符串函数

字符串是字符序列,比如 "Hello world!"。


PHP 字符串函数

在本节中,我们将学习常用的字符串操作函数。


PHP strlen() 函数

strlen() 函数返回字符串的长度,以字符计。

下例返回字符串 "Hello world!" 的长度:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo strlen("Hello world!");
  6. ?>
  7. </body>
  8. </html>

以上代码的输出是:12

提示:strlen() 常用于循环和其他函数,在确定字符串何时结束很重要时。(例如,在循环中,我们也许需要在字符串的最后一个字符之后停止循环)。


对字符串中的单词计数

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

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo str_word_count("Hello world!");
  6. ?>
  7. </body>
  8. </html>

以上代码的输出:

  1. 2

反转字符串

PHP strrev() 函数反转字符串:

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo strrev("Hello world!");
  6. ?>
  7. </body>
  8. </html>

以上代码的输出:

  1. !dlrow olleH

PHP strpos() 函数

strpos() 函数用于检索字符串内指定的字符或文本。

如果找到匹配,则会返回首个匹配的字符位置。如果未找到匹配,则将返回 FALSE。

下例检索字符串 "Hello world!" 中的文本 "world":

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo strpos("Hello world!","world");
  6. ?>
  7. </body>
  8. </html>

以上代码的输出是:6。

提示:上例中字符串 "world" 的位置是 6。是 6(而不是 7)的理由是,字符串中首字符的位置是 0 而不是 1。


替换字符串中的文本

PHP str_replace() 函数用一些字符串替换字符串中的另一些字符。

下面的例子用 "Kitty" 替换文本 "world":

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. echo str_replace("world", "Kitty", "Hello world!");
  6. ?>
  7. </body>
  8. </html>

以上代码的输出是:

  1. Hello Kitty!

完整的 PHP String 参考手册

如需完整的字符串函数参考手册,请访问本站的 PHP String 参考手册

这个手册提供了每个函数的简要描述和实例!