php-json用utf-8字符(希腊语)输出web服务问题

时间:2011-06-18 17:02:19

标签: php web-services json utf-8

我是PHP& JSON并基于一个教程,我做了一个简单的Web服务,它返回一个mysql数据库表的内容。

输出为XML和JSON,数据库字符集为UTF-8。我的问题是一些字段包含希腊字符,并且在JSON输出格式中没有正确显示(在XML中一切都很好)。知道什么可能是错的吗?

PHP文件如下:

<?php

/* require the place_name_en as the parameter */

      /* soak in the passed variable or set our own */
      $number_of_places = isset($_GET['num']) ? intval($_GET['num']) : 1; //10 is the default
      $format = strtolower($_GET['format']) == 'json' ? 'json' : 'xml'; //xml is the default


       /* connect to the db */
      $link = mysql_connect('xxx','xxx','xxx') or die('Cannot connect to the DB');

     mysql_select_db('foodbar',$link) or die('Cannot select the DB');
     mysql_set_charset('utf8',$link);
     mysql_query('set names utf8'); 

      /* grab the posts from the db */
      $query = 'SELECT * FROM test';
      $result = mysql_query($query,$link) or die('Errant query:  '.$query);


      /* create one master array of the records */
      $posts = array();

      if(mysql_num_rows($result)) {
        while($place = mysql_fetch_assoc($result)) {
          $places[] = array('place'=>$place);

      }

      }

      if($format == 'json') {
      /* output in json format */
            header('Content-type: application/json');
            echo json_encode(array('places'=>$places));
    }
      else {

      /* output in xml format */

        header('Content-type: text/xml; charset=utf-8');
         echo '<?xml version="1.0" encoding="utf-8"?>';
        echo '<places>';
        foreach($places as $index => $place) {
          if(is_array($place)) {
            foreach($place as $key => $value) {
              echo '<',$key,'>';
              if(is_array($value)) {
                foreach($value as $tag => $val) {
                  /*echo '<',$tag,'>',htmlentities($val,ENT_QUOTES,"utf-8"),'</',$tag,'>';*/
                        echo '<',$tag,'>',$val,'</',$tag,'>';
                }
              }
              echo '</',$key,'>';
            }
          }
        }
        echo '</places>';
        }

      @mysql_close($link);

?>

您可以测试xml输出here

但是当返回json format时,希腊字符会出现问题。他们看起来像:

  

\ u03b4 \ u03b4 \ u03b5 \ u03c3 \ u03c3 \ u03b4 \ u03b4 \ u03c6

有什么想法吗?提前谢谢!

P.S。数据库设置:MySQL字符集:UTF-8 Unicode(utf8)和MySQL连接排序规则:utf_8_unicode_ci

1 个答案:

答案 0 :(得分:4)

json_encode()将unicode字符编码为\uxxxx个序列。这是正常的。 JS会理解它们