returns an array from the json values * @deprecated Use Json::jsonConvertToArray() */ public static function jsonConvertToArray(?string $json, bool $override = false): array { return Json::jsonConvertToArray($json, $override); } /** * @param bool|boolean $return_string [default=false] if set to true * it will return the message string and not * the error number * @return int|string Either error number (0 for no error) * or error string ('' for no error) * @deprecated Use Json::jsonGetLastError() */ public static function jsonGetLastError(bool $return_string = false) { return Json::jsonGetLastError($return_string); } } // __END__