好吧,这取决于您所说的条目,三个帖子值中的第一个还是数据库上的前一个记录?!
假设用户只提供两个值
$_POST['phone1'] = 34234034234;
$_POST['phone2'] = 32423423423;
你可以试试这样的
$values = array_intersect_key( $_POST, array_flip( array('phone1','phone2','phone3') ) );
$query = 'update register set';
if ( isset($values['phone1']) ) $query.= ' Phone1_No = ?,';
if ( isset($values['phone2']) ) $query.= ' Phone2_No = ?,';
if ( isset($values['phone3']) ) $query.= ' Phone3_No = ?,';
$query = rtrim($query, ',') . ' where E_Mail = ?';
$stmt = $mysqli->prepare($query);
array_unshift($values, str_repeat('s', count($values) ) );
array_push($values, $_POST['email']);
call_user_func_array( array($stmt, 'bind_param'), $values );
if ( !$stmt->execute() )
{
// some error
}
$stmt->close();
或坚持使用您的旧解决方案并使其更整洁,同时保持相同的逻辑并添加从 1 到 3 的简单循环:
for ($i=1; $i < 3; ++$i)
{
if ( !empty($_POST["phone{$i}"]) )
{
$stmt = $mysqli->prepare("update register set Phone{$i}_No = ? where E_Mail = ?");
$stmt->bind_param('s', $_POST["phone{$i}"]);
$stmt->execute();
$stmt->close();
}
}