我正在尝试创建包含所有订单相关信息的自定义xml。我为此创建了一个模块,在该模块块中,我使用以下代码生成xml -
$doc = new \DOMDocument('1.0', 'UTF-8');
$doc->formatOutput = true;
$root = $doc->createElementNS('http://www.alshaya.com' ,'co:customerOrders');
$root->setAttributeNS('http://www.w3.org/2000/xmlns/' ,'xmlns:types', 'http://www.alshaya.com/schema/types/v1.0');
$doc->appendChild($root);
$customerOrder = $doc->createElement("co:customerOrder");
$root->appendChild(111);
echo $doc->saveXML();
但是我收到了以下错误,我无法生成xml代码。
**Fatal error**: Class 'DOMDocument' not found
请建议。
答案 0 :(得分:0)
尝试在命名空间中导入它:
namespace ...
use DOMDocument;
class ...
{
...
$doc = new DOMDocument('1.0', 'UTF-8');