Jump to content

Grabbing content from URL


Canman2005

Recommended Posts

Is it possible to supply a URL of an external site in PHP and grab whatever is held between two defined tags.

 

For example, if you wanted to grab news from a website, then providing the URL and HTML tags the news you want to grab in contained within and then PHP would pull through each result on the page?

 

Is this possible?

Link to comment
https://forums.phpfreaks.com/topic/139625-grabbing-content-from-url/
Share on other sites

regex is slow

 

use strpos with substr

 

example:

 

<?php
  $d = file_get_contents("http://theWebsite.com/file.php");
  $tag = "<h1>";
  $s = strpos($d,$tag) + strlen($tag);
  $e = strpos($d,"</".substr($tag,1),$s);
  $content = substr($d,$s,$e - $s);
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.