Magento’s Core JSON Encoding and Decoding Functions

To JSON encode an array
[php]
$jsonData = Mage::helper(‘core’)->jsonEncode($array);
[/php]

To JSON decode an array
[php]
$array = Mage::helper(‘core’)->jsonDecode($jsonData);
[/php]