XMLWriter 无法写入元素

发布于 2025-01-04 15:17:39 字数 553 浏览 0 评论 0原文

我发现不可能将任何内容(文本或其他元素)写入head元素,例如

$XML = new XMLWriter();
$XML->openMemory();
$XML->startElement("head");
$XML->writeAttribute("id","head");
$XML->text("lable");
$XML->endElement();
$XML->startElement("div");
$XML->text("div");
$XML->endElement();
echo $XML->outputMemory();

将在body中输出元素,而不是在head中,但它会产生正确的属性:

<html>
<head id="head">
</head>
<body>
lable
<div>
div
</div>
</body>
</html>

为什么我不能将任何内容写入head?

Iv discovered that it is impossible to write any content (text or another elements) into head element, for example

$XML = new XMLWriter();
$XML->openMemory();
$XML->startElement("head");
$XML->writeAttribute("id","head");
$XML->text("lable");
$XML->endElement();
$XML->startElement("div");
$XML->text("div");
$XML->endElement();
echo $XML->outputMemory();

will output elements in body, not in head, but it makes correct attributes:

<html>
<head id="head">
</head>
<body>
lable
<div>
div
</div>
</body>
</html>

Why i cannot write any content into head?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼中杀气 2025-01-11 15:17:39

HTML 不支持在其 中出现文本或内容相关元素。来自W3C 建议

<块引用>

HEAD 元素包含有关当前文档的信息,例如标题、可能对搜索引擎有用的关键字以及不被视为文档内容的其他数据。

通常,您想要写入 HTML 头部的主要元素是 </code> 元素和任何 <code><meta></code> 元素。我认为以下方法会起作用:

$XML = new XMLWriter();
$XML->openMemory();
$XML->startElement("head");
$XML->writeAttribute("id","head");
$XML->startElement("title");
$XML->text("My HTML page");
$XML->endElement();
$XML->endElement();
$XML->startElement("div");
$XML->text("div");
$XML->endElement();
echo $XML->outputMemory();

HTML does not support the presence of text or content-related elements in its <head>. From the W3C recommendation:

The HEAD element contains information about the current document, such as its title, keywords that may be useful to search engines, and other data that is not considered document content.

Typically, the main elements you would want to write to the HTML head are the <title> element and any <meta> elements. I presume that the following would work:

$XML = new XMLWriter();
$XML->openMemory();
$XML->startElement("head");
$XML->writeAttribute("id","head");
$XML->startElement("title");
$XML->text("My HTML page");
$XML->endElement();
$XML->endElement();
$XML->startElement("div");
$XML->text("div");
$XML->endElement();
echo $XML->outputMemory();
岁吢 2025-01-11 15:17:39

运行与上面提供的完全相同的脚本,我得到以下结果:

<head id="head">lable</head><div>div</div>

由于您的代码甚至没有提到 bodyhtml 元素,也许有一些后处理PHP 代码生成的输出?

Running the exact same script you provided above, I get the following result:

<head id="head">lable</head><div>div</div>

Since your code doesn't even mention a body or an html element, maybe there's something post-processing the output generated by your PHP code?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文