codeigniter购物车没有保存十进制数值,如果用户输入2.5作为数量它接受为25.所以如何将qty设为double或float类型。 在侧车系统库我已经改变
$items['qty'] = trim(preg_replace('/([^0-9])/i', '', $items['qty']));
以
$items['qty'] = trim(preg_replace('/([^0-9\.])/i', '', $items['qty']));
但没有改变。我需要帮助!
答案 0 :(得分:0)