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