mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
17 lines
294 B
PHP
17 lines
294 B
PHP
--TEST--
|
|
ReflectionClass::getConstant
|
|
--SKIPIF--
|
|
<?php extension_loaded('reflection') or die('skip'); ?>
|
|
--FILE--
|
|
<?php
|
|
class Foo {
|
|
const c1 = 1;
|
|
}
|
|
$class = new ReflectionClass("Foo");
|
|
var_dump($class->getConstant("c1"));
|
|
var_dump($class->getConstant("c2"));
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|
|
bool(false)
|