我正在使用XMLWriter编写XML。我已经能够创建
了<foo xmlns="https://www.example.com" id="1" name="test" />
使用:
$w=new XMLWriter();
$w->openMemory();
$w->startDocument('1.0','UTF-8');
$w->startElementNS(null, "foo", "https://www.example.com");
$w->writeAttribute("id", 1);
$w->writeAttribute("name", "test");
$w->endDocument();
return $w->outputMemory(true);
但是,我需要的是添加xsi和xsi:schemaLocation,例如:
<foo xmlns="https://www.example.com" id="1" name="test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://www.example.com/myschema.xsd" />
我尝试使用此代码:
$w->writeAttributeNS("xmlns","xsi", "http://www.w3.org/2001/XMLSchema-instance", "http://www.w3.org/2001/XMLSchema-instance");
但后来我最终得到了:
<foo xmlns="https://www.example.com" id="1" name="test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xmlns="http://www.w3.org/2001/XMLSchema-instance" />
哪个不合法,也不是我需要的。
答案 0 :(得分:2)
我弄清楚了,只需使用writeAttribute
代替writeAttributeNS
。
$w->writeAttribute("xmlns:xsi", "http://www.w3.org/2001/XMLSchema-instance");
$w->writeAttribute("xsi:schemaLocation", "https://www.example.com/myschema.xsd");