Skip to content

Instantly share code, notes, and snippets.

@OrangeTux
Last active December 24, 2015 07:38
Show Gist options
  • Save OrangeTux/6764734 to your computer and use it in GitHub Desktop.
Save OrangeTux/6764734 to your computer and use it in GitHub Desktop.
<?php
function ref($var)
{
$var[] = 'Item';
}
$es = array();
ref($es);
ref($es);
print_r($es);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment