| Current Path : /hdd/hdd21/main/php5/php-5.6.6/tests/lang/ |
| Current File : //hdd/hdd21/main/php5/php-5.6.6/tests/lang/bug26696.phpt |
--TEST--
Bug #26696 (string index in a switch() crashes with multiple matches)
--FILE--
<?php
$str = 'asdd/?';
$len = strlen($str);
for ($i = 0; $i < $len; $i++) {
switch ($str[$i]) {
case '?':
echo "OK\n";
break;
}
}
$str = '*';
switch ($str[0]) {
case '*';
echo "OK\n";
break;
default:
echo 'Default RAN!';
}
?>
--EXPECT--
OK
OK