From 77d70c27da45ef10bc901a0975a5f24a578665c9 Mon Sep 17 00:00:00 2001 From: Phil Burton Date: Tue, 11 Jun 2019 14:46:00 +0100 Subject: Add custom curlInterface implementation and comment out the verbose option --- src/Curl.php | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ src/Etym.php | 3 ++- 2 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 src/Curl.php diff --git a/src/Curl.php b/src/Curl.php new file mode 100644 index 0000000..61acaa0 --- /dev/null +++ b/src/Curl.php @@ -0,0 +1,48 @@ +baseURL . $input; $dom = new Dom; - $dom->load($targetURL); + $dom->loadFromUrl($targetURL, [], new Curl); $html = $dom->find($this->domSearch); if (!$html instanceof \PHPHtmlParser\Dom\Collection || count($html) <= 0) { -- cgit v1.2.3