我将数据库设置设置为

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上设置数据库,我是否还要在模块上做其他事情?

最佳答案

您可以通过给定的更改进行检查。请将排序规则更改为utf8_unicode_ci。也许它将为您工作。

关于php - ??????使用CodeIgniter在mysql上的希腊字符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19473552/

10-09 18:27