Dear Friends
I want to get web page contents with this method :
Is it possible to call Asynchronous this method ?
Thank you.
I want to get web page contents with this method :
Code:
function getStatus($url) { $c = curl_init(); curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); curl_setopt($c, CURLOPT_URL, $url); $contents = curl_exec($c); curl_close($c); return $contents ; }
Is it possible to call Asynchronous this method ?
Thank you.
Comment