当前位置:Gxlcms > PHP教程 > php入门教程:stripos实例教程_PHP教程

php入门教程:stripos实例教程_PHP教程

时间:2021-07-01 10:21:17 帮助过:31人阅读

php入门教程:stripos 实例教程

定义和用法
该stripos ( )函数返回位置,首次出现了字串的开始位置。

如果字符串是没有发现,此功能返回FALSE 。

stripos(string,find,start)
参数 说明

string: 必须先,

find: 必须要查找的字符串

start: Optional. Specifies where to begin the search


好了下面我们来看看.stripos例子.


echo stripos("Hello world!","WO");
?>


输出结果为.
6


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445520.htmlTechArticlephp入门教程: stripos 实例教程 定义和用法 该stripos ( )函数返回位置,首次出现了字串的开始位置。 如果字符串是没有发现,此功能返回...

人气教程排行