Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 369 Bytes

function.HH.Lib.Str.search.md

File metadata and controls

17 lines (14 loc) · 369 Bytes
$result = Str\search("example_string", "example");
echo($result);
//result: 0

$result = Str\search("example_string", "EXAMPLE");
echo($result);
//result: null

$result = Str\search("example_string", "example", 2); // with offset
echo($result);
//result: null

$result = Str\search("example_string", "uncontained");
echo($result);
//result: null