[PHP] what are {} used for in php?

2005-04-06 Thread Jacques
I have often seen php code included inside braces. What does this mean or do? Jacques -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] what are {} used for in php?

2005-04-06 Thread Jochem Maas
Jacques wrote: I have often seen php code included inside braces. What does this mean or do? you mean inside a double quoted string? like: ?php $var = {$myArray[$myAssocKey]} {$myObj-property}; ? the braces are used to delimit the variables that are to be interpolated, this is done to make sure

Re: [PHP] what are {} used for in php?

2005-04-06 Thread Josip Dzolonga
Jacques wrote: I have often seen php code included inside braces. What does this mean or do? Jacques A code block, rtfm :-) -- Josip Dzolonga http://josip.dotgeek.org jdzolonga[at]gmail.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] what are {} used for in php?

2005-04-06 Thread kalinga
http://www.wellho.net/question/H1_5.html and try google. vk. On Apr 6, 2005 2:55 PM, Jacques [EMAIL PROTECTED] wrote: I have often seen php code included inside braces. What does this mean or do? Jacques -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: