strpos() 函数用于定位字符串第一次出现的位置,返回整型。
语法:
int strpos ( string string, mixed needle [, int start] )
例子:
<?php echo strpos('abcdef', 'c'); //输出 2 ?>
0