3v4l.org

run code in 500+ PHP versions simultaneously
<?php function pcre_stristr($raw,$str,$pos=false){ $r = ''; if($raw!='' && $str!=''){ $str = (string) $str; $tmp = preg_split('/'.preg_quote($str,'/').'/su',$raw,2,PREG_SPLIT_OFFSET_CAPTURE); if(count($tmp)==2){ if($pos){ $r = $tmp[0][0]; } else{ if($tmp[0][0]==''){ $r = $raw; } else{ $r = substr($raw,strlen($tmp[0][0])); } } } else{ $r = false; } } return $r; } $raw = '0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ'; $len = mb_strlen($raw); $tmp = array(); for($i=0;$i<10000;$i++){ $start = $lenth = 0; $start = mt_rand(0,$len-1); $length = mt_rand(1,min($len-$start,10)); if($start+$length<=$len){ $tmp[] = mb_substr($raw,$start,$length); } } $tmp = array_slice(array_unique($tmp),0,1000); echo '-----compatibility test-----'.PHP_EOL; echo 'samples count: '.count($tmp).PHP_EOL; foreach($tmp as $str){ $chk = true; if($chk && mb_strstr($raw,$str)!=pcre_stristr($raw,$str)){ $chk = false; } if($chk && mb_strstr($raw,$str,true)!=pcre_stristr($raw,$str,true)){ $chk = false; } if(!$chk && $str!='ß'){ echo 'raw: '.$raw.PHP_EOL; echo 'str: '.$str.PHP_EOL.PHP_EOL; echo 'mb_stristr($raw,$str,false)'.PHP_EOL.mb_stristr($raw,$str,false).PHP_EOL.PHP_EOL; echo 'pcre_stristr($raw,$str,false)'.PHP_EOL.pcre_stristr($raw,$str,false).PHP_EOL.PHP_EOL; echo 'mb_stristr($raw,$str,true)'.PHP_EOL.mb_stristr($raw,$str,true).PHP_EOL.PHP_EOL; echo 'pcre_stristr($raw,$str,true)'.PHP_EOL.pcre_stristr($raw,$str,true).PHP_EOL.PHP_EOL; echo 'test failed'; exit(); } } echo 'test finished'.PHP_EOL.PHP_EOL; echo '-----runtime test-----'.PHP_EOL; echo 'mb_stristr() x1000'.PHP_EOL; $time = microtime(true); foreach($tmp as $str){ mb_strstr($raw,$str); } $timea = microtime(true)-$time; echo 'load in '.number_format($timea,5).'ms'.PHP_EOL.PHP_EOL; echo 'pcre_stristr() x1000'.PHP_EOL; $time = microtime(true); foreach($tmp as $str){ pcre_stristr($raw,$str); } $timeb = microtime(true)-$time; echo 'load in '.number_format($timeb,5).'ms'.PHP_EOL.PHP_EOL; echo 'time save '.number_format(100-100*($timeb/$timea),2).'%'; ?>
Output for 8.5.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00075ms pcre_stristr() x1000 load in 0.00123ms time save -63.08%
Output for 8.5.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00078ms pcre_stristr() x1000 load in 0.00132ms time save -67.76%
Output for 8.5.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00054ms pcre_stristr() x1000 load in 0.00084ms time save -56.57%
Output for 8.5.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00048ms pcre_stristr() x1000 load in 0.00089ms time save -84.63%
Output for 8.5.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00053ms pcre_stristr() x1000 load in 0.00088ms time save -66.11%
Output for 8.5.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00049ms pcre_stristr() x1000 load in 0.00075ms time save -52.66%
Output for 8.5.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00052ms pcre_stristr() x1000 load in 0.00076ms time save -45.96%
Output for 8.5.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00046ms pcre_stristr() x1000 load in 0.00070ms time save -50.82%
Output for 8.5.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00050ms pcre_stristr() x1000 load in 0.00093ms time save -85.88%
Output for 8.5.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00047ms pcre_stristr() x1000 load in 0.00079ms time save -66.65%
Output for 8.4.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00062ms pcre_stristr() x1000 load in 0.00076ms time save -22.50%
Output for 8.4.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00047ms pcre_stristr() x1000 load in 0.00079ms time save -69.51%
Output for 8.4.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00057ms pcre_stristr() x1000 load in 0.00087ms time save -52.65%
Output for 8.4.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00055ms pcre_stristr() x1000 load in 0.00100ms time save -82.82%
Output for 8.4.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00046ms pcre_stristr() x1000 load in 0.00085ms time save -83.44%
Output for 8.4.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00046ms pcre_stristr() x1000 load in 0.00086ms time save -85.74%
Output for 8.4.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00057ms pcre_stristr() x1000 load in 0.00081ms time save -42.14%
Output for 8.4.17
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00048ms pcre_stristr() x1000 load in 0.00091ms time save -89.89%
Output for 8.4.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00048ms pcre_stristr() x1000 load in 0.00086ms time save -78.89%
Output for 8.4.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00047ms pcre_stristr() x1000 load in 0.00101ms time save -117.66%
Output for 8.4.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00057ms pcre_stristr() x1000 load in 0.00091ms time save -58.65%
Output for 8.4.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00048ms pcre_stristr() x1000 load in 0.00094ms time save -97.25%
Output for 8.4.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00050ms pcre_stristr() x1000 load in 0.00077ms time save -53.96%
Output for 8.4.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00061ms pcre_stristr() x1000 load in 0.00078ms time save -27.56%
Output for 8.4.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00055ms pcre_stristr() x1000 load in 0.00089ms time save -61.14%
Output for 8.4.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00086ms pcre_stristr() x1000 load in 0.00133ms time save -54.61%
Output for 8.4.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00060ms pcre_stristr() x1000 load in 0.00089ms time save -49.52%
Output for 8.4.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00054ms pcre_stristr() x1000 load in 0.00076ms time save -41.53%
Output for 8.4.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00050ms pcre_stristr() x1000 load in 0.00088ms time save -75.87%
Output for 8.4.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00094ms pcre_stristr() x1000 load in 0.00137ms time save -46.00%
Output for 8.4.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00057ms pcre_stristr() x1000 load in 0.00081ms time save -40.57%
Output for 8.4.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00068ms pcre_stristr() x1000 load in 0.00095ms time save -38.63%
Output for 8.4.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00052ms pcre_stristr() x1000 load in 0.00092ms time save -75.89%
Output for 8.4.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00055ms pcre_stristr() x1000 load in 0.00075ms time save -37.97%
Output for 8.3.33
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00063ms pcre_stristr() x1000 load in 0.00077ms time save -22.26%
Output for 8.3.32
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00076ms pcre_stristr() x1000 load in 0.00116ms time save -53.50%
Output for 8.3.31
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00055ms pcre_stristr() x1000 load in 0.00077ms time save -40.48%
Output for 8.3.30
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00083ms pcre_stristr() x1000 load in 0.00118ms time save -41.09%
Output for 8.3.29
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00049ms pcre_stristr() x1000 load in 0.00088ms time save -81.77%
Output for 8.3.28
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00075ms pcre_stristr() x1000 load in 0.00119ms time save -59.85%
Output for 8.3.27
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00053ms pcre_stristr() x1000 load in 0.00081ms time save -51.63%
Output for 8.3.26
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00092ms pcre_stristr() x1000 load in 0.00116ms time save -25.14%
Output for 8.3.25
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00053ms pcre_stristr() x1000 load in 0.00086ms time save -61.57%
Output for 8.3.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00067ms pcre_stristr() x1000 load in 0.00099ms time save -47.62%
Output for 8.3.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00066ms pcre_stristr() x1000 load in 0.00091ms time save -39.19%
Output for 8.3.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00052ms pcre_stristr() x1000 load in 0.00087ms time save -66.70%
Output for 8.3.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00085ms pcre_stristr() x1000 load in 0.00083ms time save 2.00%
Output for 8.3.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00051ms pcre_stristr() x1000 load in 0.00085ms time save -65.17%
Output for 8.3.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00047ms pcre_stristr() x1000 load in 0.00081ms time save -71.59%
Output for 8.3.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00045ms pcre_stristr() x1000 load in 0.00089ms time save -98.25%
Output for 8.3.17
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00093ms pcre_stristr() x1000 load in 0.00135ms time save -45.98%
Output for 8.3.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00060ms pcre_stristr() x1000 load in 0.00095ms time save -58.80%
Output for 8.3.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00057ms pcre_stristr() x1000 load in 0.00115ms time save -103.50%
Output for 8.3.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00063ms pcre_stristr() x1000 load in 0.00084ms time save -32.98%
Output for 8.3.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00082ms pcre_stristr() x1000 load in 0.00121ms time save -47.30%
Output for 8.3.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00055ms pcre_stristr() x1000 load in 0.00072ms time save -31.36%
Output for 8.3.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00053ms pcre_stristr() x1000 load in 0.00076ms time save -42.58%
Output for 8.3.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00051ms pcre_stristr() x1000 load in 0.00077ms time save -51.03%
Output for 8.3.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00051ms pcre_stristr() x1000 load in 0.00079ms time save -55.02%
Output for 8.3.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00051ms pcre_stristr() x1000 load in 0.00090ms time save -77.61%
Output for 8.3.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00058ms pcre_stristr() x1000 load in 0.00084ms time save -44.23%
Output for 8.3.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00055ms pcre_stristr() x1000 load in 0.00089ms time save -62.55%
Output for 8.3.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00053ms pcre_stristr() x1000 load in 0.00096ms time save -81.69%
Output for 8.3.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00054ms pcre_stristr() x1000 load in 0.00089ms time save -65.46%
Output for 8.3.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00059ms pcre_stristr() x1000 load in 0.00078ms time save -31.36%
Output for 8.3.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00056ms pcre_stristr() x1000 load in 0.00106ms time save -88.55%
Output for 8.3.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00025ms pcre_stristr() x1000 load in 0.00089ms time save -260.48%
Output for 8.3.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00028ms pcre_stristr() x1000 load in 0.00081ms time save -190.68%
Output for 8.2.33
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00076ms time save -161.43%
Output for 8.2.32
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00083ms time save -177.20%
Output for 8.2.31
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00082ms time save -155.01%
Output for 8.2.30
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00070ms time save -132.35%
Output for 8.2.29
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00033ms pcre_stristr() x1000 load in 0.00090ms time save -169.32%
Output for 8.2.28
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00081ms time save -167.62%
Output for 8.2.27
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00098ms time save -205.98%
Output for 8.2.26
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00084ms time save -171.84%
Output for 8.2.25
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00034ms pcre_stristr() x1000 load in 0.00125ms time save -269.83%
Output for 8.2.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00075ms time save -147.99%
Output for 8.2.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00086ms time save -191.16%
Output for 8.2.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00074ms time save -147.13%
Output for 8.2.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00133ms time save -268.76%
Output for 8.2.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00090ms time save -203.23%
Output for 8.2.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00109ms time save -259.92%
Output for 8.2.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00085ms time save -177.80%
Output for 8.2.17
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00088ms time save -183.49%
Output for 8.2.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00035ms pcre_stristr() x1000 load in 0.00115ms time save -223.64%
Output for 8.2.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00103ms time save -227.41%
Output for 8.2.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00073ms pcre_stristr() x1000 load in 0.00215ms time save -195.00%
Output for 8.2.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00069ms pcre_stristr() x1000 load in 0.00179ms time save -159.88%
Output for 8.2.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00089ms time save -175.13%
Output for 8.2.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00077ms time save -162.94%
Output for 8.2.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00076ms time save -142.67%
Output for 8.2.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00077ms time save -162.08%
Output for 8.2.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00097ms time save -209.24%
Output for 8.2.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00035ms pcre_stristr() x1000 load in 0.00091ms time save -157.98%
Output for 8.2.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00076ms time save -140.85%
Output for 8.2.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00091ms time save -187.17%
Output for 8.2.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00115ms time save -270.38%
Output for 8.2.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00035ms pcre_stristr() x1000 load in 0.00085ms time save -144.06%
Output for 8.2.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00035ms pcre_stristr() x1000 load in 0.00102ms time save -188.35%
Output for 8.2.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00035ms pcre_stristr() x1000 load in 0.00092ms time save -161.21%
Output for 8.2.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00034ms pcre_stristr() x1000 load in 0.00096ms time save -185.56%
Output for 8.1.34
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00125ms time save -238.05%
Output for 8.1.33
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00033ms pcre_stristr() x1000 load in 0.00127ms time save -285.49%
Output for 8.1.32
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00085ms time save -174.16%
Output for 8.1.31
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00033ms pcre_stristr() x1000 load in 0.00083ms time save -152.54%
Output for 8.1.30
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00033ms pcre_stristr() x1000 load in 0.00092ms time save -181.03%
Output for 8.1.29
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00039ms pcre_stristr() x1000 load in 0.00089ms time save -125.11%
Output for 8.1.28
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00092ms time save -184.42%
Output for 8.1.27
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00108ms time save -242.19%
Output for 8.1.26
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00101ms time save -217.21%
Output for 8.1.25
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00082ms time save -166.80%
Output for 8.1.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00034ms pcre_stristr() x1000 load in 0.00106ms time save -208.06%
Output for 8.1.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00088ms time save -194.88%
Output for 8.1.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00033ms pcre_stristr() x1000 load in 0.00085ms time save -161.18%
Output for 8.1.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00077ms time save -162.82%
Output for 8.1.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00033ms pcre_stristr() x1000 load in 0.00077ms time save -135.29%
Output for 8.1.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00083ms time save -174.74%
Output for 8.1.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00077ms time save -163.14%
Output for 8.1.17
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00074ms time save -141.80%
Output for 8.1.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00075ms time save -137.59%
Output for 8.1.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00125ms time save -230.30%
Output for 8.1.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00033ms pcre_stristr() x1000 load in 0.00086ms time save -159.22%
Output for 8.1.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00099ms time save -211.25%
Output for 8.1.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00083ms time save -164.22%
Output for 8.1.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00092ms time save -193.83%
Output for 8.1.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00033ms pcre_stristr() x1000 load in 0.00100ms time save -205.99%
Output for 8.1.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00075ms time save -144.81%
Output for 8.1.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00076ms time save -135.31%
Output for 8.1.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00081ms time save -150.33%
Output for 8.1.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00089ms time save -176.75%
Output for 8.1.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00033ms pcre_stristr() x1000 load in 0.00127ms time save -279.81%
Output for 8.1.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00096ms time save -201.50%
Output for 8.1.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00121ms time save -234.97%
Output for 8.1.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00079ms time save -174.83%
Output for 8.1.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00073ms time save -151.23%
Output for 8.1.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00089ms time save -135.95%
Output for 8.0.30
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00084ms time save -176.47%
Output for 8.0.29
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00104ms time save -253.18%
Output for 8.0.28
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00103ms time save -236.29%
Output for 8.0.27
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00084ms time save -168.19%
Output for 8.0.26
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00082ms time save -177.05%
Output for 8.0.25
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00087ms time save -191.73%
Output for 8.0.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00088ms time save -174.46%
Output for 8.0.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00076ms time save -138.27%
Output for 8.0.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00035ms pcre_stristr() x1000 load in 0.00093ms time save -168.60%
Output for 8.0.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00084ms time save -176.63%
Output for 8.0.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00079ms time save -171.46%
Output for 8.0.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00079ms time save -167.04%
Output for 8.0.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00034ms pcre_stristr() x1000 load in 0.00088ms time save -160.76%
Output for 8.0.17
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00084ms time save -182.10%
Output for 8.0.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00034ms pcre_stristr() x1000 load in 0.00110ms time save -222.09%
Output for 8.0.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00081ms time save -155.71%
Output for 8.0.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00095ms time save -202.51%
Output for 8.0.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00083ms time save -189.57%
Output for 8.0.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00077ms time save -157.36%
Output for 8.0.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00076ms time save -147.71%
Output for 8.0.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00075ms time save -147.22%
Output for 8.0.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00089ms time save -185.89%
Output for 8.0.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00089ms time save -174.54%
Output for 8.0.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00032ms pcre_stristr() x1000 load in 0.00107ms time save -234.53%
Output for 8.0.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00086ms time save -174.41%
Output for 8.0.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00030ms pcre_stristr() x1000 load in 0.00089ms time save -199.11%
Output for 8.0.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00131ms time save -251.15%
Output for 8.0.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00029ms pcre_stristr() x1000 load in 0.00078ms time save -173.16%
Output for 8.0.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00031ms pcre_stristr() x1000 load in 0.00103ms time save -228.41%
Output for 8.0.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00033ms pcre_stristr() x1000 load in 0.00083ms time save -150.54%
Output for 7.4.33
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00082ms time save -118.64%
Output for 7.4.32
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00078ms time save -108.24%
Output for 7.4.30
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00090ms time save -150.20%
Output for 7.4.29
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00091ms time save -142.71%
Output for 7.4.28
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00052ms pcre_stristr() x1000 load in 0.00124ms time save -140.24%
Output for 7.4.27
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00035ms pcre_stristr() x1000 load in 0.00078ms time save -120.59%
Output for 7.4.26
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00099ms time save -158.05%
Output for 7.4.25
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00045ms pcre_stristr() x1000 load in 0.00093ms time save -108.91%
Output for 7.4.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00081ms time save -119.38%
Output for 7.4.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00087ms time save -131.80%
Output for 7.4.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00049ms pcre_stristr() x1000 load in 0.00120ms time save -142.68%
Output for 7.4.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00043ms pcre_stristr() x1000 load in 0.00086ms time save -103.02%
Output for 7.4.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00042ms pcre_stristr() x1000 load in 0.00088ms time save -110.67%
Output for 7.4.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00084ms time save -137.11%
Output for 7.4.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00089ms time save -133.46%
Output for 7.4.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00081ms time save -110.47%
Output for 7.4.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00046ms pcre_stristr() x1000 load in 0.00113ms time save -145.42%
Output for 7.4.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00077ms time save -107.01%
Output for 7.4.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00041ms pcre_stristr() x1000 load in 0.00079ms time save -94.07%
Output for 7.4.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00039ms pcre_stristr() x1000 load in 0.00084ms time save -113.37%
Output for 7.4.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00042ms pcre_stristr() x1000 load in 0.00088ms time save -111.52%
Output for 7.4.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00035ms pcre_stristr() x1000 load in 0.00080ms time save -128.00%
Output for 7.4.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00039ms pcre_stristr() x1000 load in 0.00079ms time save -100.79%
Output for 7.4.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00035ms pcre_stristr() x1000 load in 0.00084ms time save -141.03%
Output for 7.4.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00034ms pcre_stristr() x1000 load in 0.00086ms time save -150.73%
Output for 7.4.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00087ms time save -135.88%
Output for 7.4.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00040ms pcre_stristr() x1000 load in 0.00085ms time save -113.23%
Output for 7.4.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00040ms pcre_stristr() x1000 load in 0.00098ms time save -146.63%
Output for 7.4.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00099ms time save -160.54%
Output for 7.4.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00039ms pcre_stristr() x1000 load in 0.00096ms time save -149.85%
Output for 7.4.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00050ms pcre_stristr() x1000 load in 0.00085ms time save -69.10%
Output for 7.4.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00040ms pcre_stristr() x1000 load in 0.00080ms time save -101.56%
Output for 7.3.33
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00042ms pcre_stristr() x1000 load in 0.00100ms time save -139.08%
Output for 7.3.32
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00079ms time save -114.60%
Output for 7.3.31
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00084ms time save -121.31%
Output for 7.3.30
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00095ms time save -160.03%
Output for 7.3.29
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00041ms pcre_stristr() x1000 load in 0.00080ms time save -96.77%
Output for 7.3.28
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00041ms pcre_stristr() x1000 load in 0.00088ms time save -114.23%
Output for 7.3.27
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00047ms pcre_stristr() x1000 load in 0.00103ms time save -121.71%
Output for 7.3.26
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00040ms pcre_stristr() x1000 load in 0.00093ms time save -136.63%
Output for 7.3.25
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00081ms time save -122.46%
Output for 7.3.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00041ms pcre_stristr() x1000 load in 0.00108ms time save -165.94%
Output for 7.3.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00047ms pcre_stristr() x1000 load in 0.00099ms time save -112.40%
Output for 7.3.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00093ms time save -162.53%
Output for 7.3.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00035ms pcre_stristr() x1000 load in 0.00101ms time save -186.22%
Output for 7.3.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00040ms pcre_stristr() x1000 load in 0.00107ms time save -170.37%
Output for 7.3.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00084ms time save -132.11%
Output for 7.3.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00080ms time save -121.81%
Output for 7.3.17
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00048ms pcre_stristr() x1000 load in 0.00148ms time save -204.98%
Output for 7.3.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00053ms pcre_stristr() x1000 load in 0.00130ms time save -147.09%
Output for 7.3.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00052ms pcre_stristr() x1000 load in 0.00120ms time save -133.12%
Output for 7.3.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00081ms time save -118.94%
Output for 7.3.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00131ms time save -243.60%
Output for 7.3.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00104ms time save -182.51%
Output for 7.3.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00096ms time save -150.09%
Output for 7.3.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00034ms pcre_stristr() x1000 load in 0.00092ms time save -167.80%
Output for 7.3.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00052ms pcre_stristr() x1000 load in 0.00110ms time save -111.90%
Output for 7.3.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00079ms time save -121.22%
Output for 7.3.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00039ms pcre_stristr() x1000 load in 0.00100ms time save -157.23%
Output for 7.3.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00037ms pcre_stristr() x1000 load in 0.00112ms time save -201.47%
Output for 7.3.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00045ms pcre_stristr() x1000 load in 0.00105ms time save -132.49%
Output for 7.3.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00042ms pcre_stristr() x1000 load in 0.00101ms time save -141.97%
Output for 7.3.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00116ms pcre_stristr() x1000 load in 0.00281ms time save -141.30%
Output for 7.3.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00041ms pcre_stristr() x1000 load in 0.00093ms time save -127.23%
Output for 7.3.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00036ms pcre_stristr() x1000 load in 0.00082ms time save -127.15%
Output for 7.3.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00038ms pcre_stristr() x1000 load in 0.00088ms time save -135.13%
Output for 7.2.34
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00143ms pcre_stristr() x1000 load in 0.00122ms time save 14.70%
Output for 7.2.33
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00153ms pcre_stristr() x1000 load in 0.00113ms time save 26.00%
Output for 7.2.32
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00146ms pcre_stristr() x1000 load in 0.00106ms time save 27.41%
Output for 7.2.31
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00145ms pcre_stristr() x1000 load in 0.00142ms time save 2.46%
Output for 7.2.30
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00152ms pcre_stristr() x1000 load in 0.00140ms time save 7.77%
Output for 7.2.29
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00144ms pcre_stristr() x1000 load in 0.00126ms time save 12.30%
Output for 7.2.28
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00181ms pcre_stristr() x1000 load in 0.00141ms time save 22.31%
Output for 7.2.27
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00145ms pcre_stristr() x1000 load in 0.00110ms time save 24.28%
Output for 7.2.26
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00142ms pcre_stristr() x1000 load in 0.00103ms time save 27.30%
Output for 7.2.25
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00143ms pcre_stristr() x1000 load in 0.00102ms time save 29.01%
Output for 7.2.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00145ms pcre_stristr() x1000 load in 0.00111ms time save 23.22%
Output for 7.2.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00145ms pcre_stristr() x1000 load in 0.00133ms time save 8.24%
Output for 7.2.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00155ms pcre_stristr() x1000 load in 0.00138ms time save 10.99%
Output for 7.2.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00151ms pcre_stristr() x1000 load in 0.00091ms time save 39.77%
Output for 7.2.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00149ms pcre_stristr() x1000 load in 0.00099ms time save 33.70%
Output for 7.2.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00144ms pcre_stristr() x1000 load in 0.00100ms time save 30.75%
Output for 7.2.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00152ms pcre_stristr() x1000 load in 0.00099ms time save 34.63%
Output for 7.2.17
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00145ms pcre_stristr() x1000 load in 0.00101ms time save 30.36%
Output for 7.2.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00162ms pcre_stristr() x1000 load in 0.00125ms time save 22.84%
Output for 7.2.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00137ms pcre_stristr() x1000 load in 0.00089ms time save 35.59%
Output for 7.2.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00149ms pcre_stristr() x1000 load in 0.00106ms time save 29.34%
Output for 7.2.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00179ms pcre_stristr() x1000 load in 0.00134ms time save 25.31%
Output for 7.2.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00157ms pcre_stristr() x1000 load in 0.00100ms time save 36.57%
Output for 7.2.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00145ms pcre_stristr() x1000 load in 0.00111ms time save 23.83%
Output for 7.2.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00137ms pcre_stristr() x1000 load in 0.00093ms time save 32.26%
Output for 7.2.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00166ms pcre_stristr() x1000 load in 0.00127ms time save 23.48%
Output for 7.2.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00134ms pcre_stristr() x1000 load in 0.00122ms time save 9.25%
Output for 7.2.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00135ms pcre_stristr() x1000 load in 0.00097ms time save 28.51%
Output for 7.2.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00141ms pcre_stristr() x1000 load in 0.00095ms time save 32.53%
Output for 7.2.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00138ms pcre_stristr() x1000 load in 0.00108ms time save 21.33%
Output for 7.2.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00138ms pcre_stristr() x1000 load in 0.00100ms time save 27.53%
Output for 7.2.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00150ms pcre_stristr() x1000 load in 0.00093ms time save 38.18%
Output for 7.2.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00148ms pcre_stristr() x1000 load in 0.00135ms time save 8.54%
Output for 7.2.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00138ms pcre_stristr() x1000 load in 0.00093ms time save 32.77%
Output for 7.2.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00162ms pcre_stristr() x1000 load in 0.00113ms time save 30.63%
Output for 7.1.33
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00154ms pcre_stristr() x1000 load in 0.00101ms time save 34.02%
Output for 7.1.32
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00137ms pcre_stristr() x1000 load in 0.00093ms time save 32.11%
Output for 7.1.31
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00155ms pcre_stristr() x1000 load in 0.00120ms time save 22.91%
Output for 7.1.30
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00145ms pcre_stristr() x1000 load in 0.00122ms time save 15.77%
Output for 7.1.29
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00138ms pcre_stristr() x1000 load in 0.00100ms time save 27.65%
Output for 7.1.28
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00141ms pcre_stristr() x1000 load in 0.00155ms time save -10.09%
Output for 7.1.27
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00150ms pcre_stristr() x1000 load in 0.00111ms time save 26.24%
Output for 7.1.26
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00137ms pcre_stristr() x1000 load in 0.00104ms time save 24.07%
Output for 7.1.25
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00155ms pcre_stristr() x1000 load in 0.00095ms time save 38.49%
Output for 7.1.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00140ms pcre_stristr() x1000 load in 0.00104ms time save 25.83%
Output for 7.1.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00143ms pcre_stristr() x1000 load in 0.00108ms time save 24.16%
Output for 7.1.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00155ms pcre_stristr() x1000 load in 0.00108ms time save 30.62%
Output for 7.1.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00148ms pcre_stristr() x1000 load in 0.00092ms time save 37.45%
Output for 7.1.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00138ms pcre_stristr() x1000 load in 0.00096ms time save 30.38%
Output for 7.1.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00153ms pcre_stristr() x1000 load in 0.00106ms time save 30.48%
Output for 7.1.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00146ms pcre_stristr() x1000 load in 0.00092ms time save 37.11%
Output for 7.1.17
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00160ms pcre_stristr() x1000 load in 0.00099ms time save 37.83%
Output for 7.1.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00183ms pcre_stristr() x1000 load in 0.00110ms time save 40.32%
Output for 7.1.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00152ms pcre_stristr() x1000 load in 0.00101ms time save 33.11%
Output for 7.1.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00148ms pcre_stristr() x1000 load in 0.00108ms time save 27.44%
Output for 7.1.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00157ms pcre_stristr() x1000 load in 0.00120ms time save 23.49%
Output for 7.1.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00146ms pcre_stristr() x1000 load in 0.00094ms time save 35.61%
Output for 7.1.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00137ms pcre_stristr() x1000 load in 0.00091ms time save 33.50%
Output for 7.1.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00180ms pcre_stristr() x1000 load in 0.00133ms time save 26.41%
Output for 7.1.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00184ms pcre_stristr() x1000 load in 0.00154ms time save 16.21%
Output for 7.1.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00143ms pcre_stristr() x1000 load in 0.00123ms time save 14.05%
Output for 7.1.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00291ms pcre_stristr() x1000 load in 0.00148ms time save 49.18%
Output for 7.1.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00146ms pcre_stristr() x1000 load in 0.00102ms time save 30.51%
Output for 7.1.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00137ms pcre_stristr() x1000 load in 0.00100ms time save 27.09%
Output for 7.1.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00137ms pcre_stristr() x1000 load in 0.00097ms time save 29.35%
Output for 7.1.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00147ms pcre_stristr() x1000 load in 0.00097ms time save 33.62%
Output for 7.1.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00138ms pcre_stristr() x1000 load in 0.00108ms time save 21.79%
Output for 7.1.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00149ms pcre_stristr() x1000 load in 0.00101ms time save 32.23%
Output for 7.1.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00137ms pcre_stristr() x1000 load in 0.00104ms time save 24.33%
Output for 7.0.33
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00138ms pcre_stristr() x1000 load in 0.00109ms time save 21.32%
Output for 7.0.32
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00162ms pcre_stristr() x1000 load in 0.00160ms time save 1.16%
Output for 7.0.31
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00169ms pcre_stristr() x1000 load in 0.00148ms time save 12.10%
Output for 7.0.30
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00149ms pcre_stristr() x1000 load in 0.00135ms time save 9.30%
Output for 7.0.29
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00147ms pcre_stristr() x1000 load in 0.00112ms time save 24.12%
Output for 7.0.28
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00139ms pcre_stristr() x1000 load in 0.00103ms time save 25.80%
Output for 7.0.27
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00157ms pcre_stristr() x1000 load in 0.00119ms time save 24.05%
Output for 7.0.26
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00147ms pcre_stristr() x1000 load in 0.00124ms time save 15.47%
Output for 7.0.25
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00170ms pcre_stristr() x1000 load in 0.00126ms time save 25.91%
Output for 7.0.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00150ms pcre_stristr() x1000 load in 0.00101ms time save 32.62%
Output for 7.0.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00150ms pcre_stristr() x1000 load in 0.00100ms time save 33.31%
Output for 7.0.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00137ms pcre_stristr() x1000 load in 0.00099ms time save 27.66%
Output for 7.0.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00135ms pcre_stristr() x1000 load in 0.00101ms time save 25.09%
Output for 7.0.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00147ms pcre_stristr() x1000 load in 0.00108ms time save 26.87%
Output for 7.0.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00143ms pcre_stristr() x1000 load in 0.00112ms time save 22.01%
Output for 7.0.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00149ms pcre_stristr() x1000 load in 0.00096ms time save 35.76%
Output for 7.0.17
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00176ms pcre_stristr() x1000 load in 0.00143ms time save 18.65%
Output for 7.0.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00179ms pcre_stristr() x1000 load in 0.00156ms time save 12.82%
Output for 7.0.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00146ms pcre_stristr() x1000 load in 0.00098ms time save 32.70%
Output for 7.0.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00154ms pcre_stristr() x1000 load in 0.00115ms time save 25.28%
Output for 7.0.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00154ms pcre_stristr() x1000 load in 0.00105ms time save 31.57%
Output for 7.0.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00142ms pcre_stristr() x1000 load in 0.00100ms time save 29.30%
Output for 7.0.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00138ms pcre_stristr() x1000 load in 0.00102ms time save 25.71%
Output for 7.0.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00167ms pcre_stristr() x1000 load in 0.00139ms time save 16.69%
Output for 7.0.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00146ms pcre_stristr() x1000 load in 0.00097ms time save 33.94%
Output for 7.0.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00187ms pcre_stristr() x1000 load in 0.00141ms time save 24.41%
Output for 7.0.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00147ms pcre_stristr() x1000 load in 0.00103ms time save 30.05%
Output for 7.0.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00153ms pcre_stristr() x1000 load in 0.00120ms time save 21.44%
Output for 7.0.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00170ms pcre_stristr() x1000 load in 0.00110ms time save 35.20%
Output for 7.0.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00148ms pcre_stristr() x1000 load in 0.00117ms time save 20.96%
Output for 7.0.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00150ms pcre_stristr() x1000 load in 0.00109ms time save 27.11%
Output for 7.0.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00151ms pcre_stristr() x1000 load in 0.00112ms time save 25.81%
Output for 7.0.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00143ms pcre_stristr() x1000 load in 0.00105ms time save 26.45%
Output for 7.0.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00136ms pcre_stristr() x1000 load in 0.00096ms time save 29.07%
Output for 5.6.40
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00168ms pcre_stristr() x1000 load in 0.00199ms time save -18.82%
Output for 5.6.39
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00141ms pcre_stristr() x1000 load in 0.00181ms time save -28.02%
Output for 5.6.38
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00152ms pcre_stristr() x1000 load in 0.00248ms time save -63.48%
Output for 5.6.37
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00143ms pcre_stristr() x1000 load in 0.00182ms time save -27.27%
Output for 5.6.36
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00172ms pcre_stristr() x1000 load in 0.00247ms time save -43.40%
Output for 5.6.35
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00154ms pcre_stristr() x1000 load in 0.00188ms time save -21.66%
Output for 5.6.34
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00157ms pcre_stristr() x1000 load in 0.00174ms time save -10.50%
Output for 5.6.33
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00158ms pcre_stristr() x1000 load in 0.00215ms time save -36.07%
Output for 5.6.32
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00166ms pcre_stristr() x1000 load in 0.00263ms time save -58.48%
Output for 5.6.31
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00154ms pcre_stristr() x1000 load in 0.00179ms time save -15.99%
Output for 5.6.30
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00177ms pcre_stristr() x1000 load in 0.00295ms time save -66.75%
Output for 5.6.29
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00155ms pcre_stristr() x1000 load in 0.00196ms time save -25.93%
Output for 5.6.28
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00150ms pcre_stristr() x1000 load in 0.00206ms time save -37.76%
Output for 5.6.27
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00168ms pcre_stristr() x1000 load in 0.00195ms time save -15.62%
Output for 5.6.26
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00160ms pcre_stristr() x1000 load in 0.00187ms time save -17.07%
Output for 5.6.25
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00154ms pcre_stristr() x1000 load in 0.00177ms time save -14.85%
Output for 5.6.24
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00174ms pcre_stristr() x1000 load in 0.00304ms time save -74.77%
Output for 5.6.23
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00175ms pcre_stristr() x1000 load in 0.00208ms time save -18.35%
Output for 5.6.22
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00147ms pcre_stristr() x1000 load in 0.00185ms time save -25.67%
Output for 5.6.21
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00181ms pcre_stristr() x1000 load in 0.00306ms time save -69.05%
Output for 5.6.20
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00142ms pcre_stristr() x1000 load in 0.00194ms time save -36.52%
Output for 5.6.19
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00152ms pcre_stristr() x1000 load in 0.00193ms time save -26.30%
Output for 5.6.18
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00152ms pcre_stristr() x1000 load in 0.00182ms time save -20.18%
Output for 5.6.17
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00191ms pcre_stristr() x1000 load in 0.00304ms time save -58.83%
Output for 5.6.16
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00142ms pcre_stristr() x1000 load in 0.00205ms time save -44.67%
Output for 5.6.15
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00145ms pcre_stristr() x1000 load in 0.00211ms time save -45.80%
Output for 5.6.14
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00150ms pcre_stristr() x1000 load in 0.00183ms time save -21.84%
Output for 5.6.13
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00145ms pcre_stristr() x1000 load in 0.00184ms time save -27.37%
Output for 5.6.12
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00153ms pcre_stristr() x1000 load in 0.00196ms time save -28.23%
Output for 5.6.11
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00175ms pcre_stristr() x1000 load in 0.00184ms time save -5.37%
Output for 5.6.10
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00335ms pcre_stristr() x1000 load in 0.00442ms time save -31.68%
Output for 5.6.9
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00152ms pcre_stristr() x1000 load in 0.00195ms time save -28.06%
Output for 5.6.8
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00166ms pcre_stristr() x1000 load in 0.00232ms time save -39.38%
Output for 5.6.7
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00170ms pcre_stristr() x1000 load in 0.00254ms time save -49.57%
Output for 5.6.6
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00149ms pcre_stristr() x1000 load in 0.00195ms time save -30.78%
Output for 5.6.5
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00170ms pcre_stristr() x1000 load in 0.00237ms time save -39.06%
Output for 5.6.4
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00178ms pcre_stristr() x1000 load in 0.00304ms time save -71.25%
Output for 5.6.3
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00156ms pcre_stristr() x1000 load in 0.00213ms time save -36.31%
Output for 5.6.2
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00181ms pcre_stristr() x1000 load in 0.00288ms time save -59.51%
Output for 5.6.1
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00183ms pcre_stristr() x1000 load in 0.00313ms time save -71.52%
Output for 5.6.0
-----compatibility test----- samples count: 1000 test finished -----runtime test----- mb_stristr() x1000 load in 0.00172ms pcre_stristr() x1000 load in 0.00207ms time save -20.38%
Output for 5.4.25, 5.5.38
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �æ mb_stristr($raw,$str,false) �æÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄą� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.37
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: éÈèÊ� mb_stristr($raw,$str,false) éÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.36
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ê� mb_stristr($raw,$str,false) �êËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈè� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.35
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �õŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖö� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.17, 5.5.34
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �íÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘę� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.33
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÖöÕõ mb_stristr($raw,$str,false) �ÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.32
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ௿Ç� mb_stristr($raw,$str,false) ௿ÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.31
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ùÛûÜ� mb_stristr($raw,$str,false) ùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.30
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �ĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.14, 5.5.29
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �ôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒò� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.28
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÈèÊê� mb_stristr($raw,$str,false) �ÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.27
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �éÈ� mb_stristr($raw,$str,false) �éÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇç� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.26
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 4 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: Ûû� mb_stristr($raw,$str,false) ÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 4 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙù Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 4 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.25
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �ÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.42, 5.5.24
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÜüŲų� mb_stristr($raw,$str,false) �ÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.23
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �çÉ� mb_stristr($raw,$str,false) �çÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.22
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: � mb_stristr($raw,$str,false) �ÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.21
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �äÃã mb_stristr($raw,$str,false) �äÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.20
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: � mb_stristr($raw,$str,false) �ÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.19
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ÈèÊ� mb_stristr($raw,$str,false) ÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉé Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.18
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: yzÁáÀ� mb_stristr($raw,$str,false) yzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwx Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.16
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �çÉ mb_stristr($raw,$str,false) �çÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.15
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: Œ� mb_stristr($raw,$str,false) ŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.13
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ëĘę mb_stristr($raw,$str,false) �ëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊê� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.12
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: � mb_stristr($raw,$str,false) ĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃã Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.11
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: îÌìÏ� mb_stristr($raw,$str,false) îÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.10
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: öÕõŒ� mb_stristr($raw,$str,false) öÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 8 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.9
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ìÏï� mb_stristr($raw,$str,false) �ìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎî� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.8
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ê� mb_stristr($raw,$str,false) êËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.7
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �Óó� mb_stristr($raw,$str,false) �ÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.2, 5.5.6
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÌìÏ� mb_stristr($raw,$str,false) �ÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.5
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÀàÂ� mb_stristr($raw,$str,false) �ÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.4
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �Ää� mb_stristr($raw,$str,false) �ÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.3
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �õ mb_stristr($raw,$str,false) �õŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖö� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.2
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÉéÈ mb_stristr($raw,$str,false) �ÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.1
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ôÖ� mb_stristr($raw,$str,false) �ôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒò� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.5.0
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �äÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.45
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: á� mb_stristr($raw,$str,false) áÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.44
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �şẞßÚ mb_stristr($raw,$str,false) �şẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.43
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �ãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄä� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.41
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: � mb_stristr($raw,$str,false) �ĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.40
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: � mb_stristr($raw,$str,false) �ÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.39
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �íÎî� mb_stristr($raw,$str,false) �íÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘę� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.38
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ß mb_stristr($raw,$str,false) �ßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞş� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.37
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÇçÉ mb_stristr($raw,$str,false) �ÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.2.6 - 5.2.12, 5.2.15, 5.3.0 - 5.3.1, 5.3.28, 5.4.16, 5.4.29, 5.4.36
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: � mb_stristr($raw,$str,false) ÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyz Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.35
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: Ò� mb_stristr($raw,$str,false) ÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓó Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.34
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �âÄäà mb_stristr($raw,$str,false) �âÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀà� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.33
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ę� mb_stristr($raw,$str,false) ęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.32
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �À mb_stristr($raw,$str,false) �ÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.31
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �æÇ mb_stristr($raw,$str,false) �æÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄą� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.30
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ëĘę� mb_stristr($raw,$str,false) ëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêË Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.28
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ÛûÜ� mb_stristr($raw,$str,false) ÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙù Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.27
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �àÂâÄ mb_stristr($raw,$str,false) �àÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁá� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.26
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ïĮį� mb_stristr($raw,$str,false) �ïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌì� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.24
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �Õõ� mb_stristr($raw,$str,false) �ÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.23
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÕõŒ mb_stristr($raw,$str,false) �ÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.22
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÛûÜ� mb_stristr($raw,$str,false) �ÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.21
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÈèÊ mb_stristr($raw,$str,false) �ÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.13, 5.4.20
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ų mb_stristr($raw,$str,false) �ųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜü� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.19
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ñÓó� mb_stristr($raw,$str,false) �ñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮį� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.18
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ąÆ� mb_stristr($raw,$str,false) �௿ÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃã� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.17
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �úÙù mb_stristr($raw,$str,false) �úÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞß� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.15
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: � mb_stristr($raw,$str,false) ŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.14
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: � mb_stristr($raw,$str,false) �áÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyz� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.13
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ûÜüŲ� mb_stristr($raw,$str,false) �ûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙù� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.12
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ÍíÎ� mb_stristr($raw,$str,false) ÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘę Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.11
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: Ã� mb_stristr($raw,$str,false) ÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄä Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.10
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �ëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊê� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.9
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �îÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍí� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.8
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 5 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: Ôô� mb_stristr($raw,$str,false) ÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 5 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒò Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 5 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.7
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 5 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: Öö� mb_stristr($raw,$str,false) ÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 5 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔô Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 5 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.6
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �Ì mb_stristr($raw,$str,false) �ÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.5
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: vwxyz� mb_stristr($raw,$str,false) vwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstu Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.4
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �áÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyz� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.14, 5.4.3
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 1 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: � mb_stristr($raw,$str,false) ÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 1 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyz Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 1 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.1
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ẞß� mb_stristr($raw,$str,false) ẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞş Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.4.0
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 7 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: įÑñ� mb_stristr($raw,$str,false) įÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 7 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 7 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.29
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ç� mb_stristr($raw,$str,false) çÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.27
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 4 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: Íí� mb_stristr($raw,$str,false) ÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 4 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘę Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 4 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.26
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �àÂâÄ� mb_stristr($raw,$str,false) �àÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁá� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.25
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ü� mb_stristr($raw,$str,false) üŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.24
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: é� mb_stristr($raw,$str,false) éÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.23
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: œŞş� mb_stristr($raw,$str,false) œŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.22
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: � mb_stristr($raw,$str,false) �âÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀà� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.21
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 4 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: Çç� mb_stristr($raw,$str,false) ÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 4 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 4 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.20
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �Ë mb_stristr($raw,$str,false) �ËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.19
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �Û mb_stristr($raw,$str,false) �ÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.18
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 10 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: tuvwxyzÁ� mb_stristr($raw,$str,false) tuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 10 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrs Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 10 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.17
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �éÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇç� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.16
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �Į� mb_stristr($raw,$str,false) �ĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.15
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �ÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.12
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ųŸ mb_stristr($raw,$str,false) �ųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜü� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.11
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 10 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ŒœŞş� mb_stristr($raw,$str,false) ŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 10 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 10 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.10
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 3 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ù� mb_stristr($raw,$str,false) ùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 3 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 3 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.9
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ��ßÚ� mb_stristr($raw,$str,false) ��ßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞş� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.8
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 3 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ö� mb_stristr($raw,$str,false) öÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 3 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 3 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.7
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �à mb_stristr($raw,$str,false) �ÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.6
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 7 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ìÏï� mb_stristr($raw,$str,false) ìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 7 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 7 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.5
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: É� mb_stristr($raw,$str,false) ÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇç Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.4
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÜüŲų mb_stristr($raw,$str,false) �ÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.3
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �âÄäÃ� mb_stristr($raw,$str,false) �âÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀà� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.3.2
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ö mb_stristr($raw,$str,false) �öÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔô� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.2.17
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: õŒœ� mb_stristr($raw,$str,false) õŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 6 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.2.16
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÂâÄ� mb_stristr($raw,$str,false) �ÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.2.14
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �ÖöÕõ� mb_stristr($raw,$str,false) �ÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔ� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.2.13
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �üŲųŸ� mb_stristr($raw,$str,false) �üŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛû� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.2.1 - 5.2.5
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: �� mb_stristr($raw,$str,false) �ßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞş� Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 0 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.2.0
-----compatibility test----- samples count: 1000 Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 raw: 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ str: ş� mb_stristr($raw,$str,false) şẞßÚúÙùÛûÜüŲųŸÿ0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞşẞßÚúÙùÛûÜüŲųŸÿ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,false) mb_stristr($raw,$str,true) 0123456789abcdefghijklmnopqrstuvwxyzÁáÀàÂâÄäÃãĄąÆæÇçÉéÈèÊêËëĘęÍíÎîÌìÏïĮįÑñÓóÒòÔôÖöÕõŒœŞ Warning: preg_split(): Compilation failed: invalid UTF-8 string at offset 2 in /in/ZF3TK on line 6 pcre_stristr($raw,$str,true) test failed
Output for 5.0.2 - 5.0.5, 5.1.0 - 5.1.6
-----compatibility test----- samples count: 1000 Fatal error: Call to undefined function mb_strstr() in /in/ZF3TK on line 42
Process exited with code 255.
Output for 5.0.0 - 5.0.1
Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/ZF3TK on line 38 -----compatibility test-----PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/ZF3TK on line 39 samples count: 1000PHP_EOL Fatal error: Call to undefined function mb_strstr() in /in/ZF3TK on line 42
Process exited with code 255.
Output for 4.4.5 - 4.4.9
-----compatibility test----- samples count: 1000 Fatal error: Call to undefined function: mb_strstr() in /in/ZF3TK on line 42
Process exited with code 255.
Output for 4.3.10 - 4.3.11, 4.4.0 - 4.4.4
-----compatibility test----- samples count: 1000 Fatal error: Call to undefined function: mb_strstr() in /in/ZF3TK on line 42
Process exited with code 255.
Output for 4.3.2 - 4.3.9
Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/ZF3TK on line 38 -----compatibility test-----PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/ZF3TK on line 39 samples count: 1000PHP_EOL Fatal error: Call to undefined function: mb_strstr() in /in/ZF3TK on line 42
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/ZF3TK on line 38 -----compatibility test-----PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/ZF3TK on line 39 samples count: 1000PHP_EOL Fatal error: Call to undefined function: mb_strstr() in /in/ZF3TK on line 42

preferences:
96.36 ms | 2997 KiB | 4 Q