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;//輸出