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

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