当前位置:Gxlcms > PHP教程 > phpdefine

phpdefine

时间:2021-07-01 10:21:17 帮助过:6人阅读

define 设置常量(有三个参数)

1:第一个参数是常量名称

2:第二个参数是常量的值

3:可选的第三个参数规定常量名是否对大小写敏感。默认是 false。

源码:

define("a","this test for define");

echo a;

echo A;

?>

输出:

this test for define

A

源码:

define ("A","A different from a",true);

echo a;

?>

输出:

A different from a

以上就介绍了php define,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行