Skip to content

Instantly share code, notes, and snippets.

@elliotttf
Created November 3, 2011 17:51
Show Gist options
  • Save elliotttf/1337184 to your computer and use it in GitHub Desktop.
Save elliotttf/1337184 to your computer and use it in GitHub Desktop.
<?php
function test($a) {
foreach ((array) $a as $k) {
echo $k . PHP_EOL;
}
// Ruh roh.
echo $a[0];
}
$a = 100;
test($a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment