日期:2014-05-17 浏览次数:20462 次
??? define("TEST_ATTR","hhhhhhh"); ??? echo TEST_ATTR;
?
define相当于java中的constant用来定义一个常量;
defined() 函数检查某常量是否存在。
若常量存在,则返回 true,否则返回 false。
define("GREETING","Hello world!"); echo defined("GREETING") ;
defined("GREETING")