Home »

Would I use print “$a dollars” or “{$a} dollars” to print out the amount of dollars in this example?

Question ListCategory: PHPWould I use print “$a dollars” or “{$a} dollars” to print out the amount of dollars in this example?
adamemliy16 author asked 8 years ago
1 Answers
jeanderson295 author answered 8 years ago

In this example it wouldn’t matter, since the variable is all by itself, but if you were to print something like “{$a},000,000 mln dollars”, then you definitely need to use the braces.

Please login or Register to Submit Answer