怎么用用循环语句输出匹配不了就输出“匹配失败“啊
你这个是判断语句 。。。。。
$p = '/苹果/';
$str = "我喜欢吃苹果";if (preg_match($p, $str)) { echo '匹配成功';} else { echo '匹配失败';}