defined()是PHP中的內建函數,用於檢查是否存在常數,即是否定義了常數;語法格式“defined(name)”,參數name是要檢查的常數的名稱。如果常數存在,則傳回TRUE,否則傳回FALSE。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
php defined()函數
defined() 函數檢查常數是否存在。
語法
defined(name)
name:規定要檢查的常數的名稱,不可省略。
傳回值:如果常數存在,則傳回 TRUE,否則傳回 FALSE。
注意:此功能可用於PHP 4.0.0和更高版本。
範例1:
<?php define("constant_key", "value for the constant key"); echo defined("constant_key"); ?>
輸出:
#範例2:定義常數後檢查條件是否成立。
<?php define("constant_key", "value for the constant key"); if(defined("constant_key")){ echo "constant_key is defined"; }else{ echo "constant_key is not defined"; } ?>
輸出:
#範例3:在沒有定義常數的情況下檢查是否滿足條件。
<?php //define("constant_key", "value for the constant key"); if(defined("constant_key")){ echo "constant_key is defined"; }else{ echo "constant_key is not defined"; } ?>
輸出:
推薦學習:《PHP影片教學》
以上是php中defined()函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!