Home > php教程 > php手册 > php中字符查找函数

php中字符查找函数

WBOY
Release: 2016-05-25 16:57:08
Original
1230 people have browsed it

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."
";        //输出原字符串
echo convert_cyr_string($str,'w','a');     //输出转换后的字符串"hello world! ?.?"

教程地址:

欢迎转载!但请带上文章地址^^

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template