gpt4 book ai didi

php - XPath 无效表达式

转载 作者:行者123 更新时间:2023-12-03 16:08:01 24 4
gpt4 key购买 nike

<?php
$feed = file_get_contents('http://thexmofo.wordpress.com/feed/');
$xml = new SimpleXMLElement($feed);
$xml->registerXPathNamespace('media', 'http://thexmofo.wordpress.com/feed/');
$images = $xml->xpath('/rss/channel/item/media:content@url');
var_dump($images);
?>

谁能告诉我为什么我得到 Warning: SimpleXMLElement::xpath() [simplexmlelement.xpath]: Invalid expression followed by bool(false)?

最佳答案

XPath 表达式无效,这是我们所知道的。既然你没有说你想选择什么,我们所能做的就是随机猜测你的意图,所以这是我的随机猜测:

/rss/channel/item/media:content/@url

...假设您正在尝试选择该提要中的所有@url 属性。

关于php - XPath 无效表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2413949/

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