<?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:[email protected]');
var_dump($images);
?>
誰能告訴我爲什麼我得到Warning: SimpleXMLElement::xpath() [simplexmlelement.xpath]: Invalid expression
其次bool(false)
?的XPath表達式無效
Josh你猜對了...因爲我已經做出了像我非常接近的嘗試......正確的東西,所以我沒有這麼隨機。謝謝。 – jay