Skip to content

Instantly share code, notes, and snippets.

@rishpandey
Created May 20, 2019 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rishpandey/5b67bb2018a83120c8d219e3c9a5892b to your computer and use it in GitHub Desktop.
Save rishpandey/5b67bb2018a83120c8d219e3c9a5892b to your computer and use it in GitHub Desktop.
php curl example
<?php
$ch = curl_init("http://www.example.com/");
$fp = fopen("example_homepage.txt", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment