I am bit confused and not satisfied with the accepted answer here Does variable name length matter for performance in PHP?
Let me explain what i am trying to say.
PHP and ASP are both server side languages. Don't know much about ASP but as far as i know PHP complies the pages at run time. So if the page is contains long variable names or function names or how could that not matter to the compiler and so to the page output processing time. The compiler would read all the characters to the end of file before compiling for syntax and Symantec errors. correct me if i am wrong. So it means if the variable name is longer perhaps it will take more time for compiler to read them before processing hence increasing the compiling time and so run time.
<?php
//short variable name
$short="test";
echo $short;
?>
vs
<?php
//Long variable name
$long_long_long_long_long_variable_name="test";
echo $long_long_long_long_long_variable_name;
?>
So my Question is, in server side languages that compiles code when the user requests for the content, would it take more time to receive response from the server in such cases (long variable and method names)? A reference to a acceptable content or performance test is much preferred.
Please don't consider it as a duplicate as i wanted to clear out what i am trying to say, and want a reference/performance test and its also not considered as discussion as it matters with compiling time which wouldn't be changed upon with an opinion. This is here at stack overflow not at programmers as i want a performance test shown if possible.