"String Operators", aka ways of appending text to strings in PHP:
"String Operators", aka ways of appending text to strings in PHP:
* https://www.php.net/manual/en/language.operators.string.php
PHP | |
---|---|
Apparently, if concatenating multiple parts, it's better to use format string as it's internally one concatenation instead of multiple, so it's faster.