2025-01-05 00:09:57 | 我爱编程网
strstr — 查找字符串的首次出现
string strstr
( string $haystack
, mixed $needle
[, bool $before_needle = false
] )
返回 haystack 字符串从 needle 第一次出现的位置开始到 haystack 结尾的字符串。
$needle只能是字符(串)或者数字.不然会提醒:needle is not a string or an integer
如果一定要用strstr查询字符串 $aa中是否包含1或者2或者@ 可以下面这样:
$aa = "1234567@0";
$search = array(1,2,'@');
function test($str , $array_search){
foreach($array_search as $value){
if(strstr($str , $value)!==false){
return true;
}
}
return false;
}
//使用方法
$test = test($aa,$search);//true
如果你仅仅想确定 needle 是否存在于 haystack 中,请使用速度更快、耗费内存更少的 strpos() 函数。
建议使用正则表达式简单些如:
$aa = "1234567@0";
$search = '/[12@]/';
if(preg_match($search , $aa)){
//包含1或者2或者@
}else{
//不包含
}
参考PHP手册网址:
我爱编程网(https://www.52biancheng.com)小编还为大家带来php 判断一个字符串里是否有某个字符的相关内容。
php如何判断一个字符串是否包含另一个字符串2025-02-01 20:24:39
2025-02-12 03:21:37
2025-02-10 15:19:48
2025-01-28 17:58:32
2024-11-22 05:08:01
2024-09-10 08:50:00