Date: 08/30/06 (PHP Community) Keywords: no keywords Hey everybody - function (&$arg) {
$arg = !$arg;
} EDITI think that's the worst function I've ever written. Try running it. Everything is null. pretend I did this instead: function foo(&$arg) {
$arg++;
}/EDIT $arg is function & ($arg) {
//statements
}What does this to to the function? what does it do the the value of $arg?Thanks! ~d
|