Skip to content

Instantly share code, notes, and snippets.

@f1r3starter
Created February 11, 2016 08:25
Show Gist options
  • Save f1r3starter/7ee5487a9608c4501419 to your computer and use it in GitHub Desktop.
Save f1r3starter/7ee5487a9608c4501419 to your computer and use it in GitHub Desktop.
<?php
$start = microtime(true);
$i=0;
$stack = [];
while ($i!=1000){
array_push($stack,1);
$i++;
}
$time_elapsed_secs = microtime(true) - $start;
echo $time_elapsed_secs;
<?php
$start = microtime(true);
$i=0;
$stack = new SplStack();
while ($i!=1000){
$stack->push('1');
$i++;
}
$time_elapsed_secs = microtime(true) - $start;
echo $time_elapsed_secs;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment