You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
213 B

--TEST--
Bug #26869 (constant as the key of static array)
--FILE--
<?php
define("A", "1");
static $a=array(A => 1);
var_dump($a);
var_dump(isset($a[A]));
?>
--EXPECT--
array(1) {
[1]=>
int(1)
}
bool(true)