What is the meaning of { } (curly braces) in string literals in PHP?
{ }
Example:
$number = 4; print "You have the {$number}th edition book"; //output: "You have the 4th edition book";
Without curly braces PHP would try to find a variable named $numberth, that doesn't exist!
$numberth