“PHP Leer el archivo XML en la matriz” Código de respuesta

PHP Leer el archivo XML en la matriz

$get = file_get_contents('http://steamcommunity.com/groups/starhawk/memberslistxml/?xml=1.xml');
$arr = simplexml_load_string($get);
print_r($arr);
Singh99

Convertir el archivo XML a la matriz PHP

$xmlfile = file_get_contents($path);
		$ob= simplexml_load_string($xmlfile);
		$json  = json_encode($ob);
		$configData = json_decode($json, true);
Proud Pigeon

Respuestas similares a “PHP Leer el archivo XML en la matriz”

Preguntas similares a “PHP Leer el archivo XML en la matriz”

Más respuestas relacionadas con “PHP Leer el archivo XML en la matriz” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código