php中常用的字符串处理函数有strlen()、strpos()、trim()几种
strlen()函数
strlen()函数作用:
php中strlen()函数的作用是用于获取字符串的长度。
strlen()函数语法:
strlen(string)
strlen()函数使用方法:
$str = "Hello word!";//定义字符串
$len = strlen($str);//计算字符串长度
echo $len;//输出字符串的长度
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;//输出
trim()函数
trim()函数作用:
php中trim()函数的作用是用于清除字符串前后的空格或预定义字符。
trim()函数语法:
trim(string,charlist)
trim()函数使用方法:
$str = "word Hello word! word ";//字符串
$newStr = trim($str,"word ");//删除字符串前面和后面的"word "
echo $newStr;//输出