扫描二维码下载沐宇APP

沐宇

微信扫码使用沐宇小程序

沐宇

stripos能否忽略大小写检索

扬州沐宇科技
2024-06-28 19:43:27
stripos

是的,stripos函数可以忽略大小写进行检索。可以在函数的第三个参数中传入常量值STR_CASE_INSENSITIVE来实现忽略大小写的检索。示例代码如下:

$string = 'Hello, World!';
$pos = stripos($string, 'hello', 0, STR_CASE_INSENSITIVE);
if ($pos !== false) {
    echo 'The word "hello" is found in the string.';
} else {
    echo 'The word "hello" is not found in the string.';
}

扫码添加客服微信