欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php生成xml数据

程序员文章站 2022-03-03 12:12:54
1.php生成xml数据一般有2种方式, 一个是组装字符串,另一个就是使用php内置的系统类 2.使用php内置类生成xml数据 3.拼装字符串生成xml数据 ......

1.php生成xml数据一般有2种方式, 一个是组装字符串,另一个就是使用php内置的系统类

php生成xml数据

 2.使用php内置类生成xml数据

php生成xml数据

3.拼装字符串生成xml数据

public function static xml(){
    header("Content-type:text/xml;");
    $xml = "<?xml version='1.0' encoding='UTF-8'?>\n";
    $xml .= "<root>\n";
    $xml .= "<code>200</code>\n";
    $xml .= "<message>数据返回成功</message>\n";
    $xml .= "<data>\n";
    $xml .= "<id>1</id>\n";
    $xml .= "<name>yangzl</name>\n";
    $xml .= "</data>\n";
    $xml .= "</root>\n";
    echo $xml;
}

Respine::xml();