Prepends a string to the beginning of the input string.
$string = 'World'; $string = SM::prepend($string, 'Hello '); // or $string = SM::make('World') ->prepend('Hello '); echo $string; // Hello World