PHP 中有许多用于处理字符串的内置函数。以下是一些常用的 PHP 字符串函数:

1. strlen($string):返回字符串的长度。
$str = "Hello, World!";
$length = strlen($str);
echo $length; // 输出:13

2. strpos($haystack, $needle):在字符串中查找子字符串,返回第一次出现的位置索引。
$str = "Hello, World!";
$pos = strpos($str, "World");
echo $pos; // 输出:7

3. substr($string, $start, $length):返回字符串的子串。
$str = "Hello, World!";
$sub = substr($str, 0, 5);
echo $sub; // 输出:Hello

4. str_replace($search, $replace, $subject):替换字符串中的指定内容。
$str = "Hello, World!";
$newStr = str_replace("World", "PHP", $str);
echo $newStr; // 输出:Hello, PHP!

5. strtolower($string)** 和 **strtoupper($string):将字符串转换为小写和大写。
$str = "Hello, World!";
$lower = strtolower($str);
$upper = strtoupper($str);
echo $lower; // 输出:hello, world!
echo $upper; // 输出:HELLO, WORLD!

这只是一小部分 PHP 字符串函数,还有很多其他有用的函数,具体使用取决于你的需求。


转载请注明出处:http://www.pingtaimeng.com/article/detail/3472/PHP