mirror of
https://github.com/php/php-src.git
synced 2024-12-17 22:09:12 +08:00
29 lines
479 B
PHP
29 lines
479 B
PHP
--TEST--
|
|
Bug #38653 (memory leak in ReflectionClass::getConstant())
|
|
--FILE--
|
|
<?php
|
|
|
|
class foo {
|
|
const cons = 10;
|
|
const cons1 = "";
|
|
const cons2 = "test";
|
|
}
|
|
|
|
class bar extends foo {
|
|
}
|
|
|
|
$foo = new ReflectionClass("foo");
|
|
var_dump($foo->getConstant("cons"));
|
|
var_dump($foo->getConstant("cons1"));
|
|
var_dump($foo->getConstant("cons2"));
|
|
var_dump($foo->getConstant("no such const"));
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
int(10)
|
|
string(0) ""
|
|
string(4) "test"
|
|
bool(false)
|
|
Done
|