Prodjex Posted August 14, 2017 Share Posted August 14, 2017 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. The post Selecting Data From XML Tags in PHP appeared first on Kansas City Web Consulting | Kansas City Web Development. View the full article Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.