$arr = array( 'id' => 1, 'name' => 'hangenggeng', 'url' => 'thinkos.cc' ); $json = json_encode($arr); $json_class = json_decode($json); echo '<pre>'; print_r($json_class); echo '</pre>'; echo '<br />'; $json_arr = json_decode($json, true); echo '<pre>'; print_r($json_arr); echo '</pre>';