本文整理汇总了PHP中JSON::dom方法的典型用法代码示例。如果您正苦于以下问题:PHP JSON::dom方法的具体用法?PHP JSON::dom怎么用?PHP JSON::dom使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JSON
的用法示例。
在下文中一共展示了JSON::dom方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: convertToXML
/**
* Given a JSON formatted string, this function will convert it to an
* equivalent XML version (either standalone or as a fragment). The JSON
* will be added under a root node of `<data>`.
*
* @throws JSONException
* @param string $json
* The JSON formatted class
* @param boolean $standalone
* If passed true (which is the default), this parameter will cause
* the function to return the XML with an XML declaration, otherwise
* the XML will be returned as a fragment.
* @return string
* Returns a XML string
*/
public static function convertToXML($json, $standalone = true)
{
self::$dom = new DomDocument('1.0', 'utf-8');
self::$dom->formatOutput = true;
// remove callback functions from JSONP
if (preg_match('/(\\{|\\[).*(\\}|\\])/s', $json, $matches)) {
$json = $matches[0];
} else {
throw new JSONException(__("JSON not formatted correctly"));
}
$data = json_decode($json);
if (function_exists('json_last_error')) {
if (json_last_error() !== JSON_ERROR_NONE) {
throw new JSONException(__("JSON not formatted correctly"), json_last_error());
}
} elseif (!$data) {
throw new JSONException(__("JSON not formatted correctly"));
}
$data_element = self::_process($data, self::$dom->createElement('data'));
self::$dom->appendChild($data_element);
if ($standalone) {
return self::$dom->saveXML();
} else {
return self::$dom->saveXML(self::$dom->documentElement);
}
}