标签: json zend-framework
我正在尝试使用$this_helper->json->sendJson('Ôtre'=>'Être'发送Json文本 但问题是没有被认可的特殊字符。我怎么能强迫zend发送适当的Json。?
$this_helper->json->sendJson('Ôtre'=>'Être'
答案 0 :(得分:0)
编码特殊字符时,某些PHP版本存在问题。您可以通过设置以下内容来解决问题:
Zend_Json::$useBuiltinEncoderDecoder = true;