Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 287 Bytes

function.HH.Lib.Str.ends_with_ci.md

File metadata and controls

11 lines (11 loc) · 287 Bytes
$result = Str\ends_with_ci("example_string", "string");
echo($result);
//result: true
$result = Str\ends_with_ci("example_string", "STRING");
echo($result);
//result: true
$result = Str\ends_with_ci("example_string", "uncontained");
echo($result);
//result: false