gpt4 book ai didi

php - 无法用冒号解析 xml 数据 (:) from response using getNamespaces()

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

我想阅读 <q:content></q:content> 里面的任何内容以下 xml 中的标记 -

$xml = '<?xml version="1.0"?>
<q:response xmlns:q="http://api-url">
<q:impression>
<q:content>
<html>
<head>
<meta name="HandheldFriendly" content="True">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta http-equiv="cleartype" content="on">
</head>
<body style="margin:0px;padding:0px;">
<iframe scrolling="no" src="http://some-url" width="320px" height="50px" style="border:none;"></iframe>
</body>
</html>
</q:content>
<q:cpc>0.02</q:cpc>
</q:impression>
...
... some more things
...
</q:response>';

我已将 xml 放入上面的变量中,然后使用 SimpleXMLElement::getNamespaces如“Example #1 Get document namespaces in use”一节中给出的 -

//code continued
$dom = new DOMDocument;
// load the XML string defined above
$dom->loadXML($xml);

var_dump($dom->getElementsByTagNameNS('http://api-url', '*') ); // shows object(DOMNodeList)#3 (0) { }


foreach ($dom->getElementsByTagNameNS('http://api-url', '*') as $element)
{
//this does not execute
echo 'see - local name: ', $element->localName, ', prefix: ', $element->prefix, "\n";
}

但是for循环里面的代码没有执行。

我已经阅读了这些问题 -

更新
也试过这个解决方案Parse XML with Namespace using SimpleXML -

$xml = new SimpleXMLElement($xml);
$xml->registerXPathNamespace('e', 'http://api-url');

foreach($xml->xpath('//e:q') as $event) {
echo "not coming here";
$event->registerXPathNamespace('e', 'http://api-url');
var_export($event->xpath('//e:content'));
}

在这种情况下,foreach 中的代码也不会执行。 不确定我写的是否正确......

进一步更新
继续第一个解决方案...使用error_reporting = -1,发现问题出在src中的URL iframe 的属性标签。收到警告 -

Warning: DOMDocument::loadXML(): EntityRef: expecting ';' in Entity, line: 13

更新代码 -

$xml = '<?xml version="1.0"?>
<q:response xmlns:q="http://api-url">
<q:impression>
<q:content>
<html>
<head>
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta http-equiv="cleartype" content="on" />
</head>
<body style="margin:0px;padding:0px;">
<iframe scrolling="no" src="http://serve.qriously.com/v1/request?type=SERVE&aid=ratingtest&at=2&uid=0000000000000000&noHash=true&testmode=true&ua=Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; Nexus One Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1&appid=12e2561f048158249e30000012e256826ad&pv=2&rf=2&src=admarvel&type=get&lang=eng" width="320px" height="50px" style="border:none;"></iframe>
</body>
</html>
</q:content>
<q:cpc>0.02</q:cpc>
</q:impression>
<q:app_stats>
<q:total><q:ctr>0.023809523809523808</q:ctr><q:ecpm>0.5952380952380952</q:ecpm></q:total>
<q:today><q:ctr>0.043478260869565216</q:ctr><q:ecpm>1.0869565217391306</q:ecpm></q:today>
</q:app_stats>
</q:response>';

最佳答案

我没问题让它工作,我能发现的唯一错误是你正在加载包含非 XML HTML block 的 XML,这会破坏文档:head 部分中的元元素不是关闭。

See Demo .

提示:如果您开发和调试代码,请始终激活错误记录和报告,检查警告和通知。简短的一行显示 所有 类型的 PHP 错误消息,包括。 警告通知严格:

error_reporting(-1); ini_set('display_errors', 1);

DOMDocument 在加载 XML 时会谈论格式错误的元素。

“即时”修复 XML

DomDocument 只接受有效的 XML。如果你有 HTML,你也可以试试 DOMDocument::loadHTML()也可以完成这项工作,但是它会将加载的字符串转换为 X(HT)ML 文档。可能不是您要查找的内容。

要转义要加载的字符串的特定部分以使其与 XML 兼容,您可以搜索字符串模式以获取表示 XML 中的 HTML 的子字符串并对其进行适当的 XML 编码。

例如你可以找<html></html>作为周围的标签,提取整体的子串,替换为substr_replace() .要对 HTML 进行编码以用作 XML 中的数据,请使用 htmlspecialchars()函数,它将用 the other SO answer 中的五个实体替换所有内容.

一些模型代码:

$htmlStart = strpos($xml, '<html>');
if (false === $htmlStart) throw new Exception('<html> not found.');
$htmlEnd = strpos($xml, '</html>', $htmlStart);
if (false === $htmlStart) throw new Exception('</html> not found.');
$htmlLen = $htmlEnd - $htmlStart + 7;
$htmlString = substr($xml, $htmlStart, $htmlLen);
$htmlEscaped = htmlspecialchars($htmlString, ENT_QUOTES);
$xml = substr_replace($xml, $htmlEscaped, $htmlStart, $htmlLen);

关于php - 无法用冒号解析 xml 数据 (:) from response using getNamespaces(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6665222/

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