Skip to content

Instantly share code, notes, and snippets.

@msg555
Created December 22, 2015 22:40
Show Gist options
  • Save msg555/515e6fdcaa06f4e46457 to your computer and use it in GitHub Desktop.
Save msg555/515e6fdcaa06f4e46457 to your computer and use it in GitHub Desktop.
<?php
/* Create an array and populate some values. */
$arr = array();
for ($i = 0; $i < 100000; $i++) {
$arr[$i] = $i;
}
$foo = &$arr; // comment out me
for ($i = 0; $i < 100000; $i++) {
$bar = $arr; // or comment out me
}
// and I'll perform fast
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment