stripos
计算机科学术语
stripos()是PHP中的计算机科学术语,该函数查找字符串首次出现的位置(不区分大小写)。
定义和用法
如果没有找到该字符串,则返回 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) {
}
?>
参考资料
最新修订时间:2024-11-22 18:39
目录
概述
定义和用法
语法
提示和注释
例子
实例2
参考资料