I've been programming in PHP for years, and I've always wondered if there is a way to 'pre-concatenate' a string. Example:
$path = '/lib/modules/something.php';
$server = $_SERVER['DOCUMENT_ROOT'];
I've been doing this for years in order to append a value to the beginning of a string:
$path = $server . $path;
// returns: /home/somesite.com/public_html/lib/modules/something.php
Is there a shorthand for this? Just curious.