Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 281 Bytes

function.HH.Lib.Str.ends_with.md

File metadata and controls

13 lines (11 loc) · 281 Bytes
$result = Str\ends_with("example_string", "string");
echo($result);
//result: true

$result = Str\ends_with("example_string", "STRING");
echo($result);
//result: false

$result = Str\ends_with("example_string", "uncontained");
echo($result);
// result false