苹果cms 的生成xml文件总是报错

苹果cms 的生成xml文件总是报错

周赒
2024-11-05 / 0 评论 / 2 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2024年11月05日,已超过16天没有更新,若内容或图片失效,请留言反馈。

xml文件报错:

This page contains the following errors:
error on line 1 at column 6: XML declaration allowed only at the start of the document
Below is a rendering of the page up to the first error.

解决办法:
简而言之,你应该:

ob_clean()//清理(擦除)输出缓冲区
print($xml->asXML());

解释:如果任何包含的文件打印新行,您将得到
第2行第6列出错:XML声明仅允许在文档的开头
这可能是因为在某些文件中<?php标签在空行后开始。
因此,与其搜索导致错误的文件,不如简单地清理输出缓冲区。

参考:
https://stackoverflow.com/questions/21261627/error-on-line-1-at-column-6-xml-declaration-allowed-only-at-the-start-of-the-do

0

评论 (0)

取消