stripos

更新时间:2024-07-24 13:36

stripos()函数返回字符串在另一个字符串中第一次出现的位置。

定义和用法

如果没有找到该字符串,则返回 false。

语法

提示和注释

注释:该函数对大小写不敏感。如需进行对大小写敏感的搜索,请使用 strpos()函数。

例子

输出:

PHP String 函数

实例2

= 'a';

= 'xyz';

= 'ABC';

= stripos(, );

= stripos(, );

// Nope, 'a' is certainly not in 'xyz'

if ( === false) {

}

// Note our use of ===. Simply == would not work as expected

// because the position of 'a' is the 0th (first) character.

if ( !== false) {

}

?>

免责声明
隐私政策
用户协议
目录 22
0{{catalogNumber[index]}}. {{item.title}}
{{item.title}}