UTF8字符不能与数据表和yadcf正常显示(UTF8 characters not display

2019-10-23 12:37发布

我有一个MySQL数据库是UTF8,我已经正确输出前的字母,但不能让我的PHP使用Ajax的过程数据表这样做。 我曾尝试过各种方法来获取UTF8显示,包括更改页眉,使用MySQL的功能,并改变JSON编码功能,但我不能使它发挥作用。 请帮我告诉UTF8正确,而不是?的。

我:我temps.php服务器端处理脚本:

 <?php
 header("Content-Type: text/json; charset=utf-8");
 require( 'ssp.class.php' );
 $table = 'articles';
 $primaryKey = 'id';
 $columns = array(
      array( 'db' => 'title',           'dt' => 0  ),
    array( 'db' => 'description',  'dt' => 1  ));
 $sql_details = array(
 'user' => 'root', 'pass' => 'pass', 'db'   => 'test', 'host' =>      'localhost'
 );

 $db = SSP::db($sql_details);
.....


 if($clause !== ""){
  $whereAll[] = $clause;
  $_GET['columns'][$i]['search']['value'] = "";
 }}
 echo json_encode(
 SSP::complex( $_GET, $db, $table, $primaryKey, $columns, null, 
  (!empty($whereAll) ? implode(" AND ", $whereAll) : "")
  ));

我有:temp.html:我的JavaScript功能(基于数据表和yadcf)

$(document).ready(function(){
$("#example").dataTable({
    "responsive": true,
    "processing": true,
    "serverSide": true,
    "ajax": "scripts/temps.php",
    "columns": [
       // ID
       null,

       // Distributor
       null
       // Director

    ]
}).yadcf([
    // ID
    {
      column_number: 0 ,
      filter_type: "text",
      filter_reset_button_text: false
    },
    // Abstract
    {
      column_number: 1,
      filter_type: "text",
      filter_delay: 500,
      filter_reset_button_text: false
    },


]);
});

我有在数据输出temp.html:(节录因为很多的代码是无关的问题)

 <!DOCTYPE html>
 <div>
 <head>

 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 <meta name="Description" CONTENT=""/>
     ..........
 <table id="example" class="table table-striped table-bordered table-condensed" cellspacing="0" width="100%">
  <thead>
     <tr>
        <th><div>One</div></th>
        <th><div>Two</div></th>

     </tr>
  </thead>
 </table>

对不起,这么长的问题; 但还有什么我可以改变,使UTF8正确显示HTML页面上? 我试过的变量,我能想到的功能,所有的组合; 但不能使它工作。 也许有可能被应用的地方一个js函数? 感谢您的帮助。

编辑:供参考SQL结构:

     CREATE TABLE IF NOT EXISTS `articles` (
    `id` int(11) NOT NULL,
    `title` varchar(300) CHARACTER SET utf8 DEFAULT NULL,
    `description` text CHARACTER SET utf8
 ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
 -- Dumping data for table `articles`
 INSERT INTO `articles` (`id`, `title`, `description`) VALUES
 (1, 'శ్రీనివాస్scddadas తామాడా', '新概念英语第asv'),
 (2, 'asda', 'asdవా'),
 3, 'sdfsadfsdf英语', 'sadf英');

Answer 1:

您需要强制utf8在PDO连接:

$db = SSP::db($sql_details);
$db->exec("set names utf8");

或者,尝试把它作为一个PARAM:

$sql_details = array(
  'user' => 'root', 
  'pass' => 'ryan', 
  'db'   => 'edata', 
  'host' => 'localhost', 
  'charset' => 'utf8' 
);

但是,这并不适用于所有的PHP版本。

PS:你为什么设置表中的字段是类型的utf8 ,但设置表的字符来latin1



Answer 2:

如果您已经添加的所有列作为“UTF-8”,目前仍是问题仍然存在,然后试试这个

这些行添加在服务器端文件

mysql_query("SET character_set_client=utf8",$gaSql['link']);
mysql_query("SET character_set_connection=utf8",$gaSql['link']);
mysql_query("SET character_set_results=utf8",$gaSql['link']);


文章来源: UTF8 characters not displaying properly with datatables and yadcf