我将数据库设置设为
MySQL charset: UTF-8 Unicode (utf8)
MySQL connection collation: utf8_general_ci
这是我的模块,它在数据库中插入记录
<?php
class userscoresmodule extends CI_Model{
function __construct(){
parent::__construct();
$this->load->database();//Φορτώνει την βάση δεδομένων
}
function AddUserScore($userID,$userName,$score,$userLastname){
$data=array('userID' => $userID,
'userName' => $userName,
'userLastname' => $userLastname,
'score' => $score);
$this->db->insert('highscores', $data);
}
public function getAllScores(){ //Επιστρέφει τα προϊόντα
$this->db->select('*');
$this->db->from('highscores');
$this->db->limit(10);
$this->db->order_by("score", "desc");
$query = $this->db->get();
//$query = $this->db->get('highscores');
return $query->result_array(); // Επιστρέφει το αποτέλεσμα με την μορφή array
}
}
?>
问题是当它在数据库中添加带希腊字符的记录时就像????????
。我在一些帖子中读到我必须在UTF-8上设置我的数据库,我还要在模块上做其他的事情吗?
答案 0 :(得分:0)
您可以根据给定的更改进行检查。请将整理更改为utf8_unicode_ci 。可能会对你有用。