(PHP 5 >= 5.1.2, PHP 7)
ReflectionClass::hasConstant — ��鳣���Ƿ��Ѿ�����
$name
) : bool��������Ƿ��Ѿ�������ָ���ij�����
name
Ҫ�����ij������ơ�
����Ѷ��巵�� TRUE
������ FALSE
��
Example #1 ReflectionClass::hasConstant() ����
<?php
class Foo {
const c1 = 1;
}
$class = new ReflectionClass("Foo");
var_dump($class->hasConstant("c1"));
var_dump($class->hasConstant("c2"));
?>
�������̵���������ڣ�
bool(true) bool(false)