Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 292 Bytes

function.HH.Lib.Str.starts_with_ci.md

File metadata and controls

13 lines (11 loc) · 292 Bytes
$result = Str\starts_with_ci("example_string", "example");
echo($result);
//result: true

$result = Str\starts_with_ci("example_string", "EXAMPLE");
echo($result);
//result: true

$result = Str\starts_with_ci("example_string", "string");
echo($result);
//result: false