define() 函數定義了一個常量。
用法
define(const_name,value,case_insensitive)
參數
const_name− 常量的名稱。
value− 常數值。
case_insensitive− 常量名應不區分大小寫。
返回
define() 函數在成功時返回 true 或在失敗時返回 false。
示例
以下是定義常量的示例。
<?php
define("message","This is it!");
echo constant("message");
?>
輸出
以下是輸出。
This is it!
相關用法
- PHP defined()用法及代碼示例
- PHP debug_print_backtrace()用法及代碼示例
- PHP decbin()用法及代碼示例
- PHP decoct()用法及代碼示例
- PHP debug_backtrace()用法及代碼示例
- PHP dechex()用法及代碼示例
- PHP debug_zval_dump()用法及代碼示例
- PHP deg2rad()用法及代碼示例
- PHP decoct( )用法及代碼示例
- PHP decbin( )用法及代碼示例
- PHP dechex( )用法及代碼示例
- PHP disk_total_space()用法及代碼示例
- PHP disk_total_space( )用法及代碼示例
- PHP dir()用法及代碼示例
- PHP date_default_timezone_set()用法及代碼示例
- PHP date_create_immutable()用法及代碼示例
- PHP date_get_last_errors()用法及代碼示例
- PHP date_parse()用法及代碼示例
注:本文由純淨天空篩選整理自Chandu yadav大神的英文原創作品 define() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。