Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 !!!

share|improve this question
in how far would you like to limit the response? – user871784 Sep 25 '12 at 9:19
it return number of rows. how to limit it @user871784 – Ryhan Sep 25 '12 at 9:22
Take a look at this topic: stackoverflow.com/questions/3431703/… – Roel Veldhuizen Sep 25 '12 at 9:22
Rows? What kind of data is it? XML? – user871784 Sep 25 '12 at 9:24

2 Answers

Try range header:

$offset = 0;
$size = 10*1024;

$a = $offset;
$b = $offset + $size-1;

curl_easy_setopt(curlHandle, CURLOPT_HTTPHEADER, array("Range: bytes=$a-$b") );

This returns 10KB of data.

see this

share|improve this answer
Not all servers honour this header – Jack Sep 25 '12 at 9:24
1  
FYI: Curl has an option for range. curl_setopt($ch, CURLOPT_RANGE, $a.'-'.$b); – l̕aͨŵƦȆ̴̟̟͙̞ͩ͌͝ƞCͭ̏ȇ ƇhƐȓ0nè Sep 25 '12 at 9:29

If you use file_get_contents() you can easily do this:

$size = 1000;
$content = file_get_contents($url, false, null, 0, $size);

You can customize the request by using stream_context_create() and pass it as the third argument.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.