This page
...
Live information
There's a Mailinglist put up for everything concerning netcurl. That's also where you can find release information (for now). You can subscribe to the list here.
Warning | ||
---|---|---|
| ||
LOOK HERE: Module: NETCURL |
This document is deprecated. Take a look at v6.1 instead. |
This page
This documentation is about to get outdated. Things here is under maintenance only.
Going further down will give you deprecated documentation.
Table of Contents |
---|
Join the project
...
Code Block | ||||
---|---|---|---|---|
| ||||
apt-get install php-curl php-xml |
PHP-cURL simplifier library
...
- ByNodes
Extracted in the simplest way, by nodes, meaning every each of the elements are sorted out with information about the elements tagnames and attributes (name and id) - ByClosestTag
Extracts the DOMDocument and sets its closest element identification to each of the array variables, beginning with the tagname→element name → element id. - ById
Extracts the DOMDocument and sets the element identification by its id (getElementById equivalent)
Code Block | ||||
---|---|---|---|---|
| ||||
require_once("tornevall_network.php"); $CURL = new \TorneLIB\Tornevall_cURL(); $CURL->setParseHtml(true); $output = $CURL->doGet("https://my-test-url.com"); var_dump($output['parsed']['ById']); |
...