mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-12 16:54:00 +02:00
Fix 'faster' typo
This commit is contained in:
@@ -292,7 +292,7 @@ If you are defining a single string and not trying to concatenate values or anyt
|
|||||||
double quoted string will be entirely identical. Neither are quicker.
|
double quoted string will be entirely identical. Neither are quicker.
|
||||||
|
|
||||||
If you are concatenating multiple strings of any type, or interpolate values into a double quoted string, then the results can
|
If you are concatenating multiple strings of any type, or interpolate values into a double quoted string, then the results can
|
||||||
vary. If you are working with a small number of values, concatenation is minutely fasture. With a lot of values, interpolating
|
vary. If you are working with a small number of values, concatenation is minutely faster. With a lot of values, interpolating
|
||||||
is minutely faster.
|
is minutely faster.
|
||||||
|
|
||||||
Regardless of what you are doing with strings, none of the types will ever have any noticable impact on your application.
|
Regardless of what you are doing with strings, none of the types will ever have any noticable impact on your application.
|
||||||
|
Reference in New Issue
Block a user