如何在file_get_content中正确使用preg_match?我有一个用户可以登录的表单,如果用户输入了错误的信息,file_get_contents中的默认echo将使用preg_match替换为新消息,但它不起作用。
我有一个PHP代码片段,但我只得到一个白色的空白页。
$reply = file_get_contents($url, false, $context);
if(preg_match($reply, 'No information was found'){
echo("<script>location.href = '/page/message/';</script>");
} else {
echo $reply;
echo '<div>
For any other questions please contact us Monday - Sunday 9am - 6pm at <strong style="color: #000;">1235456</strong> or <strong style="color: #000;">info@example.com</strong>
</div>';
}
对于必须使用分隔符的模式,请使用
$reply=file_get_contents($url,false,$context);
if(preg_match('/No information was found/', $reply)){
echo("<script>location.href = '/page/message/';</script>");
} else {
echo $reply;
echo '<div>
For any other questions please contact us Monday - Sunday 9am - 6pm at <strong style="color: #000;">1235456</strong> or <strong style="color: #000;">info@example.com</strong>
</div>';
}
添加一个/
分隔符preg_match
第一个参数是您在第二个参数中使用的模式