-- mohmmad jarwan <[email protected]> wrote (on Tuesday, 06 January 2009, 11:36 AM +0200): > i assume zend framework use JSON in PEAR extinction so, > I need to use JSON in PECL extinction not PEAR extinction how can i do that .
Zend_Json uses ext/json when detected (available via pecl for PHP < 5.2.0, shipped as a standard PHP extension with PHP >= 5.2.0), and only the native PHP implementation (in Zend_Json_Encoder and Zend_Json_Decoder) if ext/json is not present or when explicitly requested. ext/json is used as it is many magnitudes faster than a native PHP implementation, particularly for nested data structures. -- Matthew Weier O'Phinney Software Architect | [email protected] Zend Framework | http://framework.zend.com/
