我这里有这个代码:
if (in_array("Notecards", $array) || in_array("Poster", $array)){
echo "Match found";
}else{
echo "Match not found";
}
我的问题是海报可以是海报1,海报2,海报3,海报4等等。
如果在那里说海报然后空格那么数字不在我的阵列中?
答案 0 :(得分:8)
像这样使用preg_grep
:
if (in_array("Notecards", $array) || preg_grep("/Poster\s\d+/", $array)){
echo "Match found";
}else{
echo "Match not found";
}
我冒昧地假设你可能有超过0-9的海报,在这种情况下\d+
匹配一个或多个数字(海报10,海报800等)。如果您只需要一个数字,请删除+
。
答案 1 :(得分:0)
这是一个解决方案:
if (in_array("Notecards", $array) || substr_in_array("Poster", $array)){
echo "Match found";
}else{
echo "Match not found";
}
substr_in_array($str, $array){
$length = strlen($str);
foreach($array as $value){
if(substr($value, 0, $length) == $str){
return true;
}
}
return false;
}