PHP json_encode json_decode UTF-8 質問する

PHP json_encode json_decode UTF-8 質問する

国際文字を含む JSON エンコードされた文字列をデータベースに保存し、デコードされた文字列をブラウザーで解析するにはどうすればよいですか?

<?php           
    $string = "très agréable";  
    // to the database 
    $j_encoded = json_encode(utf8_encode($string)); 
    // get from Database 
    $j_decoded = json_decode($j_encoded); 
?>    
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
    <?= $j_decoded ?>
</html> 

ベストアンサー1

json utf8 エンコードとデコード:

json_encode($data, JSON_UNESCAPED_UNICODE)

json_decode($json, false, 512, JSON_UNESCAPED_UNICODE)

utf8 を強制するのも役に立つかもしれません:http://pastebin.com/2XKqYU49

おすすめ記事