- private function json_to_xml($html, $json_match_expr, $rootName) {
- // pre-process, convert json to XML
- $ret = preg_match($json_match_expr, $html, $matches);
- if ($ret !== 1) {
- trigger_error("Cannot match expression: $json_match_expr\n", E_USER_ERROR);
- return NULL;
- }
-
- // Apparenty the ObjectNormalizer used afterwards is not able to handle
+ /**
+ * Convert json to xml.
+ */
+ private function json_to_xml($json, $root_node_name) {
+ // Apparently the ObjectNormalizer used afterwards is not able to handle