Skip to content

Instantly share code, notes, and snippets.

@WoZ
Created March 12, 2012 20:48
Show Gist options
  • Save WoZ/2024596 to your computer and use it in GitHub Desktop.
Save WoZ/2024596 to your computer and use it in GitHub Desktop.
<?php
ini_set('memory_limit', '8192M');
$iterations = 10000000;
$data = array();
for ($i = 0; $i < $iterations; $i++) {
$data['iteration' . $i] = array();
}
echo sprintf("Memory used: %0.2f MB\n", memory_get_peak_usage(true) / floatval(1024 * 1024));
// prints "Memory used: 3181.50 MB"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment