也许我问的是有点过于平庸的问题,但我真的无法弄清楚如何使用PHP检查字符串中是否出现了通配符(*)。
示例字符串:*bcd
或ab*d
或abc*
无论我尝试使用哪种PHP函数,它的行为都是不可预测的。我只需要知道通配符是否在字符串中。非常感谢您的回复!
答案 0 :(得分:4)
if (strpos($mystring, '*') === false) {
echo "Wildcard was not found in the string '$mystring'";
} else {
echo "Wildcard was found in the string '$mystring'";
}
的示例