mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
21 lines
316 B
PHP
21 lines
316 B
PHP
--TEST--
|
|
Bug #26696 (crash in switch() when string index is used)
|
|
--FILE--
|
|
<?php
|
|
$str = 'asdd/?';
|
|
$len = strlen($str);
|
|
for ($i = 0; $i < $len; $i++) {
|
|
switch ($str[$i]) {
|
|
case '?':
|
|
echo "?+\n";
|
|
break;
|
|
default:
|
|
echo $str[$i].'-';
|
|
break;
|
|
}
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
a-s-d-d-/-?+
|