前端之家收集整理的这篇文章主要介绍了
php – if!isset多个OR条件,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不能让这个工作为我的生活,这是
PHP.
<?PHP
if (!isset($_POST['ign']) || ($_POST['email'])) {
echo "Please enter all of the values!";
}
else {
echo "Thanks," . $_POST['ign'] . ",you will recieve an email when the site is complete!";
}
?>
我也试过使用!isset两次.
isset()
接受的不仅仅是一个参数,所以只需传递很多变量,你需要检查:
<?PHP
if (!isset($_POST['ign'],$_POST['email']) {
// Rest of the code here
}
?>
您也可以使用empty()
,但它一次不接受一个变量.
原文链接:https://www.f2er.com/php/131797.html