Skip to content

Instantly share code, notes, and snippets.

@scoinhawk
Forked from maxcal/gist:2947417
Created August 30, 2021 15:05
Show Gist options
  • Save scoinhawk/56b3ec36abf0ad41816989f17ac8a21e to your computer and use it in GitHub Desktop.
Save scoinhawk/56b3ec36abf0ad41816989f17ac8a21e to your computer and use it in GitHub Desktop.
Simple Curl web scraper
<?php
/**
* @param string $url - the url you wish to fetch.
* @return string - the raw html respose.
*/
function web_scrape($url) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
/**
*
* @param string $url - the url you wish to fetch.
* @return array - the http headers returned
*/
function fetch_headers($url) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, 1);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
//var_dump(get_headers("https://www.google.se/"));
// echo web_scrape('https://www.google.se/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment