PHP:json_encode和json_decode与UTF-8

时间:2012-04-26 04:48:36

标签: php json utf-8

我有以下数组:

Array
(
    [1] => Array
        (
            [time] => 07:30
            [event] => Celebrity Organ Recital – Sophie-Véronique Cauchefer-Choplin
        )
)

(原创活动字符串是:“Celebrity Organ Recital - Sophie-VéroniqueCauchefer-Choplin”,我使用了ENT_QUOTES的htmlentities)

当我使用json_encode时,事件字符串返回为NULL,并在MySQL中保存为空字符串。

如果我不使用htmlentities。我将在我的数据库中得到这个:“Celebrity Organ Recital u2013 Sophie-Vu00e9ronique Cauchefer-Choplin”。我使用了很多方法,但我仍然无法将此字符串转换回原来的字符。

我真的需要一些帮助,我希望你能给我一个解决方案,在json中对上面的UTF-8字符串进行编码,然后将其保存到MySQL,然后解码回原来的。我搜索了一会儿但仍无法找到解决方案。

非常感谢你!

1 个答案:

答案 0 :(得分:3)

在我看来,你不关心sql查询中的sanitize值 http://php.net/manual/en/function.mysql-real-escape-string.php

简单示例: 我们有结构表:

CREATE TABLE `test` (
    `text` VARCHAR(1024) NULL DEFAULT '0'
)
COLLATE='utf8_unicode_ci'
ENGINE=InnoDB

和PHP脚本

   header("Content-type:text/html;charset=utf8");
    $ar = array
        (
            1 => Array
                (
                    'time' => '07:30',
                    'event' => 'Celebrity Organ Recital – Sophie-Véronique Cauchefer-Choplin'
                )
        );

    $mysqli = new mysqli('localhost','root', '', 'test');

    $mysqli -> query("INSERT INTO `test` (`text`) VALUES ('" . json_encode($ar) . "')"); // we not escape characters like \, ", '

// now we use mysqli::real_escape_string
    $mysqli -> query("INSERT INTO `test` (`text`) VALUES ('" . $mysqli -> real_escape_string(json_encode($ar)) . "')"); // here we escape characters

    $mysqli_result = $mysqli -> query("SELECT * FROM `test");
    while($result = $mysqli_result -> fetch_assoc()){
        var_dump(json_decode($result["text"],true));
    }

var_dump的结果是:

array
  1 => 
    array
      'time' => string '07:30' (length=5)
      'event' => string 'Celebrity Organ Recital u2013 Sophie-Vu00e9ronique Cauchefer-Choplin' (length=68)

array
  1 => 
    array
      'time' => string '07:30' (length=5)
      'event' => string 'Celebrity Organ Recital – Sophie-Véronique Cauchefer-Choplin' (length=63)

第二个var_dump是正常的