How can I end a variable name in a string without using a space or any other special character?
For example, is there anything I can put between $numand stfor output 1stinstead1 st
$num = 1;
echo "$num st";
Without using a point operator for concatenation
source
share