精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

PHP constant() 函數

PHP constant() 函數

PHP Misc 參考手冊 PHP Misc 參考手冊

實例

返回一個常量的值:

<?php
//define a constant
define("GREETING","Hello you! How are you today?");

echo constant("GREETING");
?>

運行實例 ?

定義和用法

constant() 函數返回一個常量的值。

注釋: 該函數也適用于 class 常量。

語法

constant(constant)

參數 描述
constant 必需。規定要檢查的常量的名稱。

技術細節

返回值: 返回常量的值,如果常量未定義則返回 NULL。
PHP 版本: 4+

PHP Misc 參考手冊 PHP Misc 參考手冊
相關文章