本文整理汇总了PHP中Array2XML::xml方法的典型用法代码示例。如果您正苦于以下问题:PHP Array2XML::xml方法的具体用法?PHP Array2XML::xml怎么用?PHP Array2XML::xml使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Array2XML
的用法示例。
在下文中一共展示了Array2XML::xml方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
/**
* Convert an Array to XML
* @param string $node_name - name of the root node to be converted
* @param array $arr - aray to be converterd
* @return DomDocument
*/
public static function &createXML($node_name, $arr = array())
{
$xml = self::getXMLRoot();
$xml->appendChild(self::convert($node_name, $arr));
self::$xml = null;
// clear the xml node in the class for 2nd time use.
return $xml;
}
示例2: array
/**
* Convert an Array to XML
* @param string $node_name - name of the root node to be converted
* @param array $arr - aray to be converterd
* @return DomDocument
*/
public static function &createXML($node_name, $arr = array())
{
$xml = self::getXMLRoot();
/****** PATCH ***/
//http://www.lalit.org/lab/convert-php-array-to-xml-with-attributes/#comment-23469
// remove // $xml->appendChild(self::convert($node_name, $arr));
// add
if (count($arr) > 1) {
$xml->appendChild(self::convert($node_name, $arr));
} else {
$root_element = @array_pop(array_keys($arr));
$xml->insertBefore(self::convert($root_element, $arr[$root_element]));
}
// fin add
self::$xml = null;
// clear the xml node in the class for 2nd time use.
return $xml;
}