Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 193 Bytes

function.HH.Lib.Str.trim.md

File metadata and controls

9 lines (8 loc) · 193 Bytes
$result = Str\trim("example_string    ");
echo($result);
//result: "example_string"

$result = Str\trim("   example_string  ");
echo($result);
//result: "example_string"