最佳答案
Just wondering if there is something like .= for adding text to the beginning of a string, e.g.:
$foo =. 'bar';
which doesn't work.
Edit: example was originally $foo =. $bar;
which can be achieved with $bar .= $foo;