php-src/ext/reflection/tests/ReflectionClass_getReflectionConstant.phpt
2018-02-22 13:18:52 +01:00

13 lines
370 B
PHP

--TEST--
Test ReflectionClass::getReflectionConstant method
--CREDITS--
Gabriel Caruso (carusogabriel34@gmail.com)
--FILE--
<?php
$refleClass = new ReflectionClass(ReflectionClass::class);
var_dump(gettype($refleClass->getReflectionConstant('IS_IMPLICIT_ABSTRACT')));
var_dump($refleClass->getReflectionConstant('FOO_BAR'));
?>
--EXPECT--
string(6) "object"
bool(false)