gpt4 book ai didi

php - 使用 PHP asXML 和 SimpleXMLElement 获取编码 ="UTF-8"独立 ="yes"

转载 作者:可可西里 更新时间:2023-11-01 13:04:50 26 4
gpt4 key购买 nike

<分区>

当调用 php 页面时,我使用以下代码获取 XML 文件:

即当您输入 http://example.com/strtoxmp.php 时,它会根据以下编码返回给您 xml:

  $xml = new SimpleXMLElement("<feed/>");

$feed = $xml;
$feed->addChild('resultLength', "1");
$feed->addChild('endIndex', "1");

$item = $feed->addChild('item',"");
$item->addChild('contentId', "10031");
$item->addChild('contentType', "Talk");
$item->addChild('synopsis', "$newTitle" );
$item->addChild('runtime', ' ');
}

Header('Content-type: text/xml; charset:UTF-8; ');

print($xml->asXML());

它运行良好。它产生以下 xml:

<?xml version="1.0"?>
<feed>
<resultLength>1</resultLength>
<endIndex>1</endIndex>
<contentId>10031</contentId>
<contentType>Talk</contentType>
<synopsis>Mark Harris - Find Your Wings</synopsis>
<runtime> </runtime>
</item>
</feed>

但是我需要

< ?xml version="1.0" encoding="UTF-8" standalone="yes"?>

代替

< ?xml version="1.0"?>

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com