#xpath
3 posts tagged xpath. Clear filter
-
How to Extract all Images from a Webpage with Ruby
Here is a little ruby snippet that will download all pictures from a webpage. Rather than using XPath, we are going to first reduce the source code to capture everything inside of quotes. Some...
-
XPath with HTML in PHP One Liner
Here is a one liner for using XPATH with HTML in PHP $doc = new DOMXPath(@DOMDocument::loadHTML(filegetcontents("https://www.reddit.com/r/PHP/"))); Now you can use XPATH to query the html.....
-
I Just Published My First PHP Package HTMLXPATH
I just wrote and published my first PHP package on Packagist.com. It's available on packagist.org and the source code is on github. To install the package use composer composer require...