标签: php mysql codeigniter
当我使用CodeIgniter在MySQL表中保存£符号时,它不会保存£符号但保存其他文本。就像我保存“价格是100英镑”它只保存“价格是100”。
$data=array( 'option_value'=>$newtext); $this->db->where('id', $id); $this->db->update('report_texts', $data);