>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']);


I had heard someone on the list say that it's always best to use quotes, 
for the same reason as XHTML, where every value MUST have quotes.

But honestly I've been using only NO-quotes all year and find it much 
easier to read.  And NEVER any problem!

Also makes it easier when you need to use an array variable inside a quoted 
string:

print "Hello there $client[name]";



-- 
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