Lines Matching refs:mb_strstr
2 Test mb_strstr() function : basic functionality
6 function_exists('mb_strstr') or die("skip mb_strstr() is not available in this build");
10 echo "*** Testing mb_strstr() : basic functionality ***\n";
19 var_dump(bin2hex(mb_strstr($string_ascii, 'd', false, 'ISO-8859-1')));
20 var_dump(bin2hex(mb_strstr($string_ascii, 'd')));
21 var_dump(bin2hex(mb_strstr($string_ascii, 'd', true)));
25 var_dump(mb_strstr($string_ascii, '123'));
29 var_dump(bin2hex(mb_strstr($string_mb, $needle1)));
30 var_dump(bin2hex(mb_strstr($string_mb, $needle1, false, 'utf-8')));
31 var_dump(bin2hex(mb_strstr($string_mb, $needle1, true)));
36 var_dump(mb_strstr($string_mb, $needle2));
40 *** Testing mb_strstr() : basic functionality ***