File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
tests /
classes /
constants_basic_006.phpt
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs -
revision graph
Tue Feb 21 23:48:06 2012 UTC (13 years, 2 months ago) by
misho
Branches:
php,
MAIN
CVS tags:
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
v5_3_10,
HEAD
php
--TEST--
Ensure class constants are not evaluated when a class is looked up to resolve inheritance during runtime.
--FILE--
<?php
class C
{
const X = E::A;
public static $a = array(K => D::V, E::A => K);
}
eval('class D extends C { const V = \'test\'; }');
class E extends D
{
const A = "hello";
}
define('K', "nasty");
var_dump(C::X, C::$a, D::X, D::$a, E::X, E::$a);
?>
--EXPECTF--
string(5) "hello"
array(2) {
["nasty"]=>
string(4) "test"
["hello"]=>
string(5) "nasty"
}
string(5) "hello"
array(2) {
["nasty"]=>
string(4) "test"
["hello"]=>
string(5) "nasty"
}
string(5) "hello"
array(2) {
["nasty"]=>
string(4) "test"
["hello"]=>
string(5) "nasty"
}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>