更新时间:2024-07-24 13:36
stripos()函数返回字符串在另一个字符串中第一次出现的位置。
如果没有找到该字符串,则返回 false。
注释:该函数对大小写不敏感。如需进行对大小写敏感的搜索,请使用 strpos()函数。
输出:
PHP String 函数
= '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) {
}
?>