我当前的代码会冗长且重复,有什么方法可以让我遍历发布的变量并检查它们是否是使用 isset() 函数设置的。
这是我的代码:
$item_name = $_POST['item_name'];
$quantity = $_POST['qty'];
$model = $_POST['mdl'];
$weight = $_POST['wgt'];
$repornew = $_POST['ron'];
$date = $_POST['dob'];
$spec = $_POST['spc'];
$description = $_POST['desc'];
//retreive all values posted by user
if(isset($item_name) || isset($quantity) || isset($model) || isset($weight) || isset($repornew) || isset($date) || isset($spec) || isset($description)){
//send error back to user
}
使用数组或什至 JSON 来解决问题会是一个好主意吗?
我对我需要做什么有了大致的了解,但是将什么用作实现是困扰我的事情。
干杯