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
Sorry, that's not the way constants in PHP work. You can put variables in double quotes and heredocs but not constants.