I was wondering if it is 100% correct to write variable names inside quotation marks.
I mean, is there any reason to do
echo "Hello my name is " . $name;
instead of
echo "Hello my name is $name";
Thanks.
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Actually, as I already commented, it is 100% correct PHP syntax to write that way. PHP won't give you a syntax error. But you would have known that by executing your code and if uncertain, looking up the language in the manual. So the short answer is: Yes, 100% correct. Then you asked "is there any reason to do" - and I'd like to highly suggest that you define the reason, because objectively, there ain't one. The "metrics" given in the accepted answer are misleading, because the problem has (and actually technically never can be strictly) not been isolated enough (even it could be) which leads to comparing wrong numbers. If the difference between the two would be calculated, there literally is no difference that can be metriced - zero, nada, nothing. Additionally, it even varies, sometimes even the one is faster, sometimes the other (if you run it, for code/demo see below):
Your "code" will get more improvement if you upgrade your PHP version constantly than wondering about which one is faster. Rule of Thumb: Unless you don't run into a bottleneck, don't, never-ever "optimize" out of the blue. You will make your code more bad than good. You give the reason why to write this or that way, because you need to read your code.
http://codepad.viper-7.com/z5p2xf
|
||||
|
Both are fine and it's user preference which you find more readable - personally I prefer the first method of concatenating the variable. However, bear in mind that:
is not the same as
The second will output literally:
Something to keep in mind. |
|||
|
|
The only difference is performance, inserting variable name into quotation uses more processor.
Running this script on a Intel core I3-2120 3.3Ghz returns: The difference is not big deal, but just to show the concept. |
|||||||||||||||||||
|
|
it is purely a preference, both are 100% correct. i prefer first method of concatenation though for readability. |
||||
|
|