diff options
| -rw-r--r-- | php.html.markdown | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/php.html.markdown b/php.html.markdown index 6c2b38c8..24d656fa 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -88,6 +88,8 @@ $escaped   = "This contains a \t tab character.";  $unescaped = 'This just contains a slash and a t: \t';  // Enclose a variable in curly braces if needed +$apples = "I have {$number} apples to eat."; +$oranges = "I have ${number} oranges to eat.";  $money = "I have $${number} in the bank.";  // Since PHP 5.3, nowdocs can be used for uninterpolated multi-liners | 
