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
Concatenation is the way to go.
Unless you want the hokey, nasty, inefficient, evil monkey way of:
echo preg_replace("/TESTER/",TESTER,$original_content);