“PHP XML an JSON” Code-Antworten

PHP XML an JSON

$fileContents= file_get_contents($url);

$fileContents = str_replace(array("\n", "\r", "\t"), '', $fileContents);

$fileContents = trim(str_replace('"', "'", $fileContents));

$simpleXml = simplexml_load_string($fileContents);

$json = json_encode($simpleXml);
Frail Frog

PHP XML an JSON

foreach($xml->children() as $state)
{
    $states[]= array('state' => (string)$state->name); 
}       
echo json_encode($states);
Frail Frog

Ähnliche Antworten wie “PHP XML an JSON”

Fragen ähnlich wie “PHP XML an JSON”

Weitere verwandte Antworten zu “PHP XML an JSON” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen