0
如何從XML獲取內容元素?計算器上的其它解決方案不能幫助我,我做錯了什麼。這是我如何閱讀提要:如何使用PHP獲取XML rss feed的內容元素?
<?php
$content = file_get_contents('some feed url');
$x = new SimpleXmlElement($content);
foreach($x->channel->item as $entry) {
$chi = $entry->children('content', true)->encoded;
}
?>
XML:https://pastebin.com/79dgx8cU
越來越這在$結果:https://pasteboard.co/GAIlxBV.png – EugenA
你應該循環這個'$結果'並投入像我爲第0個元素的字符串。 –
我更新了代碼,使用更新後的代碼。 –