Home  >  Article  >  Backend Development  >  How to convert php string to xml

How to convert php string to xml

藏色散人
藏色散人Original
2020-10-23 09:25:592364browse

How to convert php string to xml: First create a PHP sample file; then use the "function array2xml($arr){...}" method to convert php array to xml string.

How to convert php string to xml

Recommended: "PHP Video Tutorial"

php Convert xml string into array and convert array into xml;

1. Convert xml string into php array.

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. Convert php array to xml string

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

The above is the detailed content of How to convert php string to xml. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn