我有以下 PHP 代码。XSL 转换工作正常,并向服务器回显一个字符串,但是当我尝试保存时,我得到“致命错误:调用未定义的方法 stdClass::save()”使用 PHP 5.3 简单问题?
<?php
$xml = new DOMDocument;
$xml->load('myxml.xml');
$xsl = new DOMDocument;
$xsl->load('myxsl.xsl');
$proc = new XSLTProcessor();
$proc->importStylesheet($xsl);
$newXml = $proc->transformToXML($xml);
$newXML->formatOutput=true;
echo $newXml;
$newXML->save("newfile.xml")or die("Error");
?>