Skip to main content

I need to grab the data from the “enclosure” tag from the following feed:

https://queryfeed.net/twitter?q=%40CabosNews&title-type=user-name-both&geocode=

In the example, you can modify the “enclosure” field to any of the fields you need help grabbing.  This is using the simplexml_load_string command.

$url = 'https://queryfeed.net/twitter?q=%40CabosNews&title-type=user-name-both&geocode=';
$xml = file_get_contents($url);
$obj = simplexml_load_string($xml);

foreach ($obj->channel->item as $item)
{
    echo PHP_EOL . (string)$item->enclosure['url'];
}

This will give you an output on your page of:

https://pbs.twimg.com/media/CLfaPSgWwAExQjM.jpg
https://pbs.twimg.com/media/CLfaO8oWUAAhJ3N.jpg
https://pbs.twimg.com/media/CLfaOiWWwAAWkGI.jpg
https://pbs.twimg.com/media/CLfaOIkWoAA7Ur3.jpg
https://pbs.twimg.com/media/CLfaNu7WUAAWV-4.jpg
https://pbs.twimg.com/media/CLfaNWVWUAItN_4.jpg
https://pbs.twimg.com/media/CLfaNFlWgAA9dA3.jpg
https://pbs.twimg.com/media/CLfaMqjWoAAVNUy.jpg
https://pbs.twimg.com/media/CLfaML6WcAACoj-.jpg
https://pbs.twimg.com/media/CLfMg89W8AEr7lj.jpg

You can see the demo output here.

Leave a Reply