php-src/tests/classes/constants_basic_003.phpt
2008-05-26 15:52:06 +00:00

29 lines
587 B
PHP

--TEST--
Ensure class properties and constants can be defined in terms of constants that are not known at compile time.
--FILE--
<?php
include 'constants_basic_003.inc';
class B
{
public static $a = A::MY_CONST;
public static $c = C::MY_CONST;
const ca = A::MY_CONST;
const cc = C::MY_CONST;
}
class C
{
const MY_CONST = "hello from C";
}
var_dump(B::$a);
var_dump(B::$c);
var_dump(B::ca);
var_dump(B::cc);
?>
--EXPECT--
unicode(12) "hello from A"
unicode(12) "hello from C"
unicode(12) "hello from A"
unicode(12) "hello from C"