+ 3
Which one is fastest if $a = 10; echo "Output is: {$a}"; echo "Output is " . $a; echo 'Output is ' . $a; echo "Output is $a";
6 Answers
+ 2
No difference you could think of which one is easiest but I think its more preference and some situations one might be easier than the other.
Not much time difference
0
1
0
For better performance i suggest to use the number 3
0
4
0
2 and 3
- 1
I think 3.