i search and search, and nothing usable. I have this problem with loop and using curl memory exponentially growthing. This is my example, start script = apr. 14MB, end 28MB, with my original script and repeat to 1000000 memory growth to 800MB, that`s bad. Thanks for help
PHP 5.4.5
CURL 7.21.0
for ($n = 1; $n <= 1000; $n++){
$apiCall = 'https://api.instagram.com/v1/users/' . $n . '?access_token=5600913.47c8437.358fc525ccb94a5cb33c7d1e246ef772';
$options = Array(CURLOPT_URL => $apiCall,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_FRESH_CONNECT => true
);
$ch = curl_init();
curl_setopt_array($ch, $options);
$response = curl_exec($ch);
curl_close($ch);
unset($ch);
}

curl_multi_init? Maybe it helps. tr.php.net/manual/en/function.curl-multi-init.php – qeremy Aug 15 '12 at 14:21