Scripts posted recently tagged to array in Kelpi

1- 1 of 1.

PHP Convert XML to Array

to php xml array convert by anonymous

function xml2array($object) {
	$return = NULL;
	if(is_array($object)) {
		foreach($object as $key => $value) $return[$key] = xml2array($value);
	} else {
hits counter