I want to use a constant in PHP, but I also want to put it inside double quotes like a variable. Is this at all possible?
define(\"TESTER\", \"World!\"); ech
Alternatively, do
"this is " . MY_CONSTANT
or
"this is " . constant("MY_CONSTANT");