<?php
// create curl resource
$ch = curl_init();
// set url
curl_setopt($ch, CURLOPT_URL, "https://durukanbal.com/");
//return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
$output = curl_exec($ch);
// Print
echo $output;
// close curl resource to free up system resources
curl_close($ch);
?>
Categories: PHP language
1,865 Comments