首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

php恒量 define() constant() , defined()

2012-12-27 
php常量 define() constant() , defined()define——定义常量,若定义true,则读取时不区分大小写bool define(

php常量 define() constant() , defined()

define——定义常量,若定义true,则读取时不区分大小写

bool define( string name, mixed value [, bool case_insensitive])

常量只能包含标量数据(
define("GREETING", "Hello you.", true);
echo GREETING; // outputs "Hello you."
echo Greeting; // outputs "Hello you."

?

?

========================================

constant()——读取常量

mixed constant ( string name)

?

define("MAXSIZE", 100);

echo MAXSIZE;
echo constant("MAXSIZE"); // same thing as the previous line

?

===============================

?

defined——判断常量是否定义

?

bool defined ( string name)

?

if (defined('CONSTANT')) {
????echo CONSTANT;
}

?

======================================================

?

预定义常量

?

__FILE__?? 取得文件的物理地址? 注:左右各2条下划线

?

echo __FILE__??? //C:\wamp\www\T1\1.php

?

?

?

?