PHPを使用してhttp://rss.cnn.com/rss/edition.rssフィードに記載されている各アイテムのタイトルと画像を抽出したいのですが、誰か助けてもらえますか?
ありがとう
PHPを使用してhttp://rss.cnn.com/rss/edition.rssフィードに記載されている各アイテムのタイトルと画像を抽出したいのですが、誰か助けてもらえますか?
ありがとう
simplexml_load_string()を試すことができます:
例:
<?php
$string = <<<XML
<?xml version='1.0'?>
<document>
<title>Forty What?</title>
<from>Joe</from>
<to>Jane</to>
<body>
I know that's the answer -- but what's the question?
</body>
</document>
XML;
$xml = simplexml_load_string($string);
var_dump($xml);
?>