(PHP 4, PHP 5, PHP 7)
defined — ���ij�����Ƶij����Ƿ����
$name
) : bool�������Ƶij����Ƿ��Ѷ��塣
Note:
�����Ҫ���һ�������Ƿ���ڣ���ʹ�� isset()�� defined() �������� constants ��Ч�������Ҫ���ij�������Ƿ���ڣ�ʹ�� function_exists()��
name
���������ơ�
������� name
�ij����Ѷ��壬���� TRUE
������� FALSE
��
Example #1 ��鳣��
<?php
/* Note the use of quotes, this is important. This example is checking
* if the string 'TEST' is the name of a constant named TEST */
if (defined('TEST')) {
echo TEST;
}
?>