stristr() 函數查找字符串在另一個字符串中第一次出現的位置。
如果成功,則返回字符串的其余部分(從匹配點)。如果沒有找到該字符串,則返回 false。
語法
stristr(string,search)
*/
$str="hello world"; //定義字符串
$result=stristr($str,"w"); //執行搜索操作
echo $result; //輸出搜索的結果,將輸出"world"
/*
stripos() 函數返回字符串在另一個字符串中第一次出現的位置。
如果沒有找到該字符串,則返回 false。
語法
stripos(string,find,start)
*/
$str="hello world"; //定義字符串
$result=stripos($str,"w"); //執行搜索操作
echo $result; //輸出搜索的結果,將輸出6
/*
*/
$str="hello world"; //定義字符串
$result=stripos($str,"l"); //執行搜索操作
echo $result; //輸出搜索的結果,將返回2
/*
strspn() 函數返回在字符串中包含的特定字符的數目。
語法
strspn(string,charlist,start,length)
*/
$str="hello world"; //定義字符串
$result=strspn($str,"khlleo"); //搜索符合條件的長度
echo $result; //輸出結果長度數,返回5
/*
*/
$str="hello world! ???"; //定義字符串
echo $str."<br/>"; //輸出原字符串
echo convert_cyr_string($str,'w','a'); //輸出轉換後的字符串"hello world! ?.?"