我用
if(!empty($_POST['login'])){
}
用于检查登录是否已填充,当我检查 1 个变量时它工作,但当我使用时它不工作
if(!empty($_POST['login'],$_POST['password'] )){
}
如何检查 2 个变量,我看到 isset() 也只支持 1 个变量
我用
if(!empty($_POST['login'])){
}
用于检查登录是否已填充,当我检查 1 个变量时它工作,但当我使用时它不工作
if(!empty($_POST['login'],$_POST['password'] )){
}
如何检查 2 个变量,我看到 isset() 也只支持 1 个变量
使用逻辑和操作 ( &&
) 以及对 的两次调用empty()
,如下所示:
if( !empty( $_POST['login']) && !empty( $_POST['password'])) {
// $_POST['login'] and $_POST['password'] are both not empty
}
尝试使用这个:
function isempty(){ // Function checks if all of the given arguments are empty
$empty = true;
$numargs = func_num_args(); // get the number of given Arguments
$arg_list = func_get_args(); // get the given Arguments
for ($i = 0; $i < $numargs; $i++) {
$empty = $empty && empty($arg_list[$i]);
}
return $empty;
}
你可以这样称呼它:!isempty($_POST['login'], $_POST['password'])
我没有测试代码,但它应该没问题