Maison  >  Article  >  développement back-end  >  Comment convertir une chaîne php en XML

Comment convertir une chaîne php en XML

藏色散人
藏色散人original
2020-10-23 09:25:592345parcourir

Comment convertir une chaîne php en XML : créez d'abord un exemple de fichier PHP ; puis utilisez la méthode "function array2xml($arr){...}" pour convertir un tableau php en chaîne XML.

Comment convertir une chaîne php en XML

Recommandé : "Tutoriel vidéo PHP"

php Convertir la chaîne XML en tableau et convertir le tableau en XML ;

1. Convertissez la chaîne XML en tableau php.

function xmlToArray($xml){
    if (file_exists($xml)) {
        libxml_disable_entity_loader(false);
        $xml_string = simplexml_load_file($xml,'SimpleXMLElement', LIBXML_NOCDATA);
    }else{
        libxml_disable_entity_loader(true);
        $xml_string = simplexml_load_string($xml,'SimpleXMLElement', LIBXML_NOCDATA);
    }
    $result = json_decode(json_encode($xml_string),true);
    return $result;
}

2. Convertir le tableau php en chaîne XML

function array2xml($arr){
    $str="<xml>";
    foreach ($arr as $key=>$value){
        $str.= "<$key>$value</$key>";
    }
    $str.="</xml>";
    return $str;
}

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn