set_data($data); if (is_string($data)) return $data; // Lets use JSON as an output format if the value isn't scalar return '
' . json_encode($data, JSON_PRETTY_PRINT) . '
'; } /** * Convert the encoded data to a native format * * @param string $data_string * @return object */ public function unserialize($data_string) { return NULL; } } // End of types/JSON.php