Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 341 Bytes

function.HH.Lib.Str.slice.md

File metadata and controls

17 lines (14 loc) · 341 Bytes
$result = Str\slice("example_string", 5);
echo($result);
//result: "le_string"

$result = Str\slice("example_string", 5, 1);
echo($result);
//result: "l"

$result = Str\slice("example_string", 2, 0);
echo($result);
//result: ""

$result = Str\slice("example_string", 1000);
echo($result);
//result: <Throws exception>