I'm writing some really time sensitive production application that suppose to serve millions of customers.
the server side is written in php and has some files with around 200 predefined strings with a length of around 5 to 25 characters that are all double quoted without any variables in them. for example:
define("DEFCON_ONE", "id");
define("DEFCON_TWO", "name");
.......
does changing these strings from double quote to single quotes really saves some cpu cycles because the php interpter won't search for \n or variables in it ?
these applications are really time sensitive so if this is the case I'll go and change each file and each line of code but I just want to be sure before I go and change everything.
thank you.