Skip to content

Instantly share code, notes, and snippets.

@kgaughan
Created February 17, 2009 16:18
Show Gist options
  • Save kgaughan/65815 to your computer and use it in GitHub Desktop.
Save kgaughan/65815 to your computer and use it in GitHub Desktop.
<?php
function php_is_so_broken() {
// Note: This appears to have been fixed somewhere in the 5.1 series,
// so no more brokenness. Hurray!
foreach (func_get_args() as $arg) {
echo "$arg ";
}
echo "\n";
}
php_is_so_broken("isn't", "that", "the", "truth");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment