php字符串处理函数有哪些

63次阅读
没有评论

共计 636 个字符,预计需要花费 2 分钟才能阅读完成。

php 字符串处理函数有哪些

php 中常用的字符串处理函数有 strlen()、strpos()、trim() 几种

1.strlen() 函数

strlen() 函数作用:

php 中 strlen() 函数的作用是用于获取字符串的长度。

strlen() 函数语法:

strlen(string)


strlen() 函数使用方法:

$str = "Hello word!";// 定义字符串

$len = strlen($str);// 计算字符串长度

echo $len;// 输出字符串的长度


2.strpos() 函数

strpos() 函数作用:

php 中 strpos() 函数的作用是用于查找字符串中特定的字符。

strpos() 函数语法:

strpos(string,find)


strpos() 函数使用方法:

$str1 = "Hello word! Hello word!";// 字符串 1

$str2 = "word";// 字符串 2

$loc = strpos($str1,$str2);// 返回字符串 2 在字符串 1 中第一次出现的位置

echo $loc;// 输出


3.trim() 函数

trim() 函数作用:

php 中 trim() 函数的作用是用于清除字符串前后的空格或预定义字符。

trim() 函数语法:

trim(string,charlist)


trim() 函数使用方法:

$str = "word Hello word! word ";// 字符串

$newStr = trim($str,"word ");// 删除字符串前面和后面的 "word "

echo $newStr;// 输出


丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-13发表,共计636字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)