php defined()関数

759 ワード

Definition and Usageの定義と使用方法
The defined() function checks whether a constant exists.defined()関数の役割は、定数が存在するかどうかを確認することです.
Returns TRUE if the constant exists, or FALSE otherwise.定数が存在する場合はTrueを返します.存在しない場合はFalseを返します.
Syntax構文
defined(name)

パラメータパラメータ
Descriptionの説明
name
Required. Specifies the name of the constant to checkに必要なパラメータ.定数オブジェクトの名前の指定
Exampleケース
php  
define
(
"
GREETING
"
,
"
Hello you! How are you today?
"
);  
echo
 
defined
(
"
GREETING
"
);
?>
 
 
 
The output of the code above will be:上記のコードは次の結果を出力します.
1