Re: Quotes in querys

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



You can only interpolate ONE level of array or object indirection in a string.

WORKS:
"... $foo[x] ..."
"... $foo->x ..."

FAILS:
"... $foo[x][y] ..."
"... $foo->x->y ..." //almost for sure it fails, never tried...

You can use curly braces in side a string to evaluate something:

WORKS:
"... {$foo[x][y]} ..."
"... {$foo->x->y} ..."

[soapbox]
I personally think this is possibly the ugliest wart of variable/string interpolation.

Not sure how/why it came about, but it makes zero sense, really...
[/soapbox]

ymmv


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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux