gpt4 book ai didi

php - if !设置多个 OR 条件

转载 作者:行者123 更新时间:2023-12-03 00:36:45 26 4
gpt4 key购买 nike

我无法让它在我的一生中发挥作用,它是 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'])) {
echo "Please enter all of the values!";
}else{
echo "Thanks,". $_POST['ign'].", you will receive an email when the site is complete!";
}
?>

您可以使用empty()同样,但它一次只能接受一个变量。

关于php - if !设置多个 OR 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8784584/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com