Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 245 Bytes

function.HH.Lib.Str.reverse.md

File metadata and controls

13 lines (11 loc) · 245 Bytes
$result = Str\reverse("example_string");
echo($result);
//result: "gnirts_elpmaxe"

$result = Str\reverse("Example_string");
echo($result);
//result:"gnirts_elpmaxE"

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