如何直接加载XML响应而不是$ xml-> load(' collection.xml')

时间:2018-01-15 17:37:35

标签: php xml

如何加载替换$ xml-> load(' collection.xml');与myoutput

  

//加载XML源$ xml = new DOMDocument;

     

$ XML->负载(' collection.xml&#39); //我已经在$ responce

中输出了xml      

$ xsl = new DOMDocument;

     

$ xsl->负载(' collection.xsl&#39);

     

//配置变换器$ proc = new XSLTProcessor;

     

$&PROC-GT; importStyleSheet($ XSL); //附上xsl规则

     

echo $ proc-> transformToXML($ xml);

1 个答案:

答案 0 :(得分:0)

使用

  

$ dom-> loadXML的($ XML);

而不是

  

$ XML->负载( 'collection.xml');