* Thus wrote Amon ([EMAIL PROTECTED]):
> 
> Curt Zirzow thanks for your reply also. But that has nothing to do with
> reference. If you use reference or not.. it still would not result in an
> error (hee... I want an error :P)

function foo($v) {}
foo($asdf['qwer']);
PHP Notice:  Undefined variable:  asdf in - on line 3


function foo2(&$v) {}
foo2($asdf2['qwer2']);
/* No notice */


I dont see how you say it doesn't have to do with references.


Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to