summaryrefslogtreecommitdiff
path: root/Zend/tests/selfParent_002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/selfParent_002.phpt')
-rwxr-xr-xZend/tests/selfParent_002.phpt27
1 files changed, 27 insertions, 0 deletions
diff --git a/Zend/tests/selfParent_002.phpt b/Zend/tests/selfParent_002.phpt
new file mode 100755
index 000000000..45120177a
--- /dev/null
+++ b/Zend/tests/selfParent_002.phpt
@@ -0,0 +1,27 @@
+--TEST--
+Test when constants are initialised. See also selfParent_001.phpt.
+--FILE--
+<?php
+class A {
+ const myConst = "const in A";
+ const myDynConst = self::myConst;
+
+ public static function test() {
+ var_dump(self::myDynConst);
+ }
+}
+
+class B extends A {
+ const myConst = "const in B";
+
+ public static function test() {
+ var_dump(parent::myDynConst);
+ }
+}
+
+B::test();
+A::test();
+?>
+--EXPECT--
+string(10) "const in A"
+string(10) "const in A"