1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/reflection/tests/ReflectionClassConstant_getValue.phpt
Gabriel Caruso 4aabfe911e Revert "Update versions for PHP 8.0.21"
This reverts commit 6eedacdf15.
2022-07-06 12:06:48 +02:00

48 lines
769 B
PHP

--TEST--
Test variations of getting constant values
--FILE--
<?php
/* Use separate classes to make sure that in-place constant updates don't interfere */
class A {
const X = self::Y * 2;
const Y = 1;
}
class B {
const X = self::Y * 2;
const Y = 1;
}
class C {
const X = self::Y * 2;
const Y = 1;
}
var_dump((new ReflectionClassConstant('A', 'X'))->getValue());
echo new ReflectionClassConstant('B', 'X');
echo new ReflectionClass('C');
?>
--EXPECTF--
int(2)
Constant [ public int X ] { 2 }
Class [ <user> class C ] {
@@ %s 12-15
- Constants [2] {
Constant [ public int X ] { 2 }
Constant [ public int Y ] { 1 }
}
- Static properties [0] {
}
- Static methods [0] {
}
- Properties [0] {
}
- Methods [0] {
}
}