Observe this little script:
$array = array(\'stuff\' => \'things\'); print_r($array); //prints - Array ( [stuff] => things ) $arrayEncoded = json_encod
$arrayDecoded = json_decode($arrayEncoded, true);
gives you an array.