json 解析
質問します。gbk エンコードの場合に json_encode が中国語を送信できない問題は解決しましたが、json_decode() 関数を使用して解析できないのはなぜですか?
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> function arrayRecursive(&$array, $function, $apply_to_keys_also = false) { static $recursive_counter = 0; if (++$recursive_counter > 1000) { die('possible deep recursion attack'); } foreach ($array as $key => $value) { if (is_array($value)) { arrayRecursive($array[$key], $function, $apply_to_keys_also); } else { $array[$key] = $function($value); } if ($apply_to_keys_also && is_string($key)) { $new_key = $function($key); if ($new_key != $key) { $array[$new_key] = $array[$key]; unset($array[$key]); } } } $recursive_counter--; } /************************************************************** * * 将数组转换为JSON字符串(兼容中文) * @param array $array 要转换的数组 * @return string 转换得到的json字符串 * @access public * *************************************************************/ function JSON($array) { arrayRecursive($array, 'urlencode', true); $json = json_encode($array); $json = urldecode($json); $json = str_replace("\"false\"","false",$json); $json = str_replace("\"true\"","true",$json); return $json; } function get_goodbook() { $sql = "select * from `wiki_doc`"; $data=$this->db->getAll($sql); return JSON($data); }
$ar = 配列 ( 'これが GBK エンコードされたデータです', 配列( 「これはテストです」、 「これはまだテストです」、 )、 ); echo $s = json_encode( array_map('gb2utf',$ar)); print_r(array_map('utf2gb', json_decode($s))); 関数 gb2utf($v) { if(! is_array($v)) return iconv('gbk', 'utf-8', $v); foreach($v as &$t) $t = gb2utf($t); $v を返します。 } 関数 utf2gb($v) { if(! is_array($v)) return iconv('utf-8', 'gbk', $v); foreach($v as &$t) $t = utf2gb($t); $v を返します。 } <br><font color="#e78608">------解決策---------</font><br>まず配列を utf-8 に変換します。 code Chinese なので、他のコードをたくさん書く必要はありません<div class="clear"></div>