すべて正常です。しかし、ベンガル語のフォントをMySQLデータベースからエンコードしようとすると、その時に問題が発生しました。ベンガル語のフォントは "????????????"と表示されます。ベンガル語フォントのJSONエンコードエラー
** PHPファイル**
<?php
define('HOST','localhost');
define('USER','xxxxxxx');
define('PASS','xxxxxxxx');
define('DB','xxxxxxxxx');
$con = mysqli_connect(HOST,USER,PASS,DB);
$sql = "select * from bookinfo ORDER BY ID DESC";
$res = mysqli_query($con,$sql);
$result = array();
while($row = mysqli_fetch_array($res)){
array_push($result,
array('id'=>$row[0],
'name'=>$row[1],
'writter'=>$row[2],
'url'=>$row[3]
));
}
echo json_encode(array("result"=>$result), JSON_UNESCAPED_UNICODE);
mysqli_close($con);
?>
click here to see output result
http://stackoverflow.com/questions/4076988/php-json-encode-json-decode-utf-8 –