php-src/Zend/tests/bug60169.phpt

12 lines
231 B
Plaintext
Raw Normal View History

2011-10-30 06:28:24 +00:00
--TEST--
Bug #60169 (Conjunction of ternary and list crashes PHP)
--FILE--
<?php
error_reporting(0);
$arr = array("test");
2011-10-31 06:52:45 +00:00
list($a,$b) = is_array($arr)? $arr : $arr;
list($c,$d) = is_array($arr)?: NULL;
2011-10-30 06:28:24 +00:00
echo "ok\n";
--EXPECT--
ok