My Zend_Json is messing up in encoding an object here. I\'m encoding an associative array which has two elements:
Element one is another associative array while element 2 is an
This usually happens if you use substr() or use $somestring[0] on a utf-8 string which has multibyte letters. Use mb_ prefixed functions to edit this sort of data, then you will not have problem with json_encode()