Hi there!

I'd really appreciate a clear statement whether to use better

    $foo = array('bar' => 'boing');
    doWhatSoEver($foo[bar]);

or

    $foo = array('bar' => 'boing');
    doWhatSoEver($foo['bar']);

Someone to know that?

bye Matthias


Matthias Krehl
[EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to