ZF-6670: Zend_Json_Encoder::encodeUnicodeString is missing
Description
The encodeUnicodeString static method of Zend_Json_Encoder is missing. It is called into the new method Zend_Json::_recursiveJsonExprFinder
Here is a fix :
public static function encodeUnicodeString($string) {
$encoder = new self();
return substr($encoder->_encodeString($string), 1, -1);
}
Comments
Posted by Benjamin Eberlei (beberlei) on 2009-05-15T04:06:38.000+0000
I think you might have include path problems. for me the method is there, and unittests run without problems.