I'm wondering that if there's something like JQuery's $('element.selector') implemented for PHP?
When I CURL and I got HTML codes from the remote site, I'd like to select only the tags I want before I send out to my HTML.
Thanks
The PHP Simple HTML DOM Parser has a similar functionality:
// Create DOM from URL or file
$html = file_get_html('http://www.google.com/');
// Find all images
foreach($html->find('img') as $element)
echo $element->src . '<br>';
// Find all links
foreach($html->find('a') as $element)
echo $element->href . '<br>';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With