Skip to content

Instantly share code, notes, and snippets.

View koyoyo's full-sized avatar

Tarongpong Jaratwuttiyakorn koyoyo

View GitHub Profile
@koyoyo
koyoyo / array2xml.php
Last active December 14, 2015 21:09 — forked from nazt/array2xml.php
<?php
function generate_xml_element( $dom, $data ) {
if ( empty( $data['name'] ) )
return false;
// Create the element
$element_value = ( ! empty( $data['value'] ) ) ? $data['value'] : null;
$element = $dom->createElement( $data['name'], $element_value );
// Add any attributes