PHP defined() 函數
PHP defined() 函數
實例
檢查某常量是否存在:
<?php
define("GREETING","Hello you! How are you today?");
echo defined("GREETING");
?>
define("GREETING","Hello you! How are you today?");
echo defined("GREETING");
?>
運行實例 ?
定義和用法
defined() 函數檢查某常量是否存在。
語法
defined(name)
參數 | 描述 |
---|---|
name | 必需。規定要檢查的常量的名稱。 |
技術細節
返回值: | 如果常量存在,則返回 TRUE,否則返回 FALSE。 |
---|---|
PHP 版本: | 4+ |

相關文章
- PHP 簡介
- PHP EOF(heredoc) 使用說明
- PHP 魔術常量
- PHP 過濾器
- PHP JSON
- PHP array_diff_key() 函數
- PHP array_flip() 函數
- PHP array_push() 函數
- PHP array_rand() 函數
- PHP array_reduce() 函數
- PHP array_slice() 函數
- PHP array_udiff_assoc() 函數
- PHP array_udiff_uassoc() 函數
- PHP arsort() 函數
- PHP extract() 函數
- PHP uksort() 函數
- PHP cURL 函數
- PHP 5 Filesystem 函數
- PHP Filter 函數
- PHP 雜項 函數