Jump to content

Pull specific div content from a url


tobeyt23

Recommended Posts

$url = 'https://www.valuationexpo.com/charleston-schedule/';
$content = file_get_contents($url);
$first_step = explode( '<article id="page-6417" class="mpcth-page post-6417 page type-page status-publish hentry">' , $content );
$second_step = explode("</article>" , $first_step[0] );
echo $second_step[0];

Looking to pull the content in the article id="page-6417" element. Is this the best way to do so?

 
Link to comment
Share on other sites

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.