grapheme_stristrReturns part of haystack string from the first occurrence of case-insensitive needle to the end of haystack. DescriptionProcedural style
string grapheme_stristr
( string
$haystack
, string $needle
[, bool $before_needle = false
] )Returns part of haystack string starting from and including the first occurrence of case-insensitive needle to the end of haystack. Parameters
Return ValuesReturns the portion of $haystack, or FALSE if $needle is not found. ExamplesExample #1 grapheme_stristr example
<?php The above example will output: o%CC%88a%CC%8A See Also
|