Skip to content

Instantly share code, notes, and snippets.

@dflima
Created August 24, 2016 13:04
Show Gist options
  • Save dflima/9ecf0303c1ce116f7e9c64edaf48a37d to your computer and use it in GitHub Desktop.
Save dflima/9ecf0303c1ce116f7e9c64edaf48a37d to your computer and use it in GitHub Desktop.
<?php
for ($i = 1; $i < 200; $i++) {
$a = load($i);
echo "You have allocated {$i}M (".memory_get_usage().") memory in this php script\n";
unset($a);
}
function load($i)
{
$a = str_repeat('0', $i * 1024 * 1024); // allocating 10 chars times million chars
return $a;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment