gpt4 book ai didi

php - 在数据库中保存数值时保留前导零

转载 作者:行者123 更新时间:2023-11-29 18:12:38 26 4
gpt4 key购买 nike

执行动态 MySQL 准备语句 INSERT 或 UPDATE 时,前导零(例如 0 中的 0213123 )消失。我怎样才能防止这种情况发生?

public function update($tablo, array $column, array $form)
{
global $db;
$sutun = implode(' = ?, ', array_keys($column)) . ' = ?';
$where = implode(' = ?, ', array_keys($form)) . ' = ?';
$stmt = $this->db->prepare("UPDATE $tablo SET $sutun WHERE $where") or die($this->db->error);
$form = array_merge($column, $form);
call_user_func_array(array($stmt,'bind_param'), $this->params($form));
return $stmt->execute() or die($this->db->error);
}

public function params($params, $types = '', $input = array())
{
foreach ($params as $key => $val) {
${$key} = $val;
$input[] =& ${$key};

if (is_numeric($val) AND fmod($val, 1) === 0.00) {
$types .= 'i';
} elseif (is_float($val)) {
$types .= 'd';
} elseif (is_string($val) OR fmod($val, 1) !== 0.00) {
$types .= 's';
} else {
$types .= 'b';
}
}
array_unshift($input, $types);
return $input;
}

最佳答案

这似乎是数据库的行为。该列可能是不允许前导零的数据类型,例如 INT。尝试将该列更改为 VARCHAR

关于php - 在数据库中保存数值时保留前导零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47271615/

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