kgaughan (owner)

Revisions

gist: 65815 Download_button fork
public
Public Clone URL: git://gist.github.com/65815.git
Embed All Files: show embed
PHP #
1
2
3
4
5
6
7
8
9
10
11
<?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");