append

This method appends a given string to the end of the input string.

Usage

$string = 'Hello';
$string = SM::append($string, ' World');
// or
$string = SM::make($string)
    ->append(' World');
echo $string; // Hello World

This site uses Just the Docs, a documentation theme for Jekyll.