i made a code using php and curl, which return a huge amount of data from a url. i would like to limit
the response from url using curl.
Our Code is:
$ch = curl_init($Url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$content = curl_exec($ch);
curl_close($ch);
Thanks! Any Help is Appreciated !!!