Rumah > Artikel > pembangunan bahagian belakang > php中define的含义及用法详解
define()函数理解1(着重于作用的理解)
define() 函数定义一个常量。
常量的特点:
常量类似变量,不同之处在于:在设定以后,常量的值无法更改常量名,不需要开头的美元符号 ($),作用域不影响对常量的访问,常量值只能是字符串或数字。
define函数理解2(着重于参数理解)
语法:
define(name,value,case_insensitive)
参数描述:
name必需。规定常量的名称。//name参数为define函数的第一个参数,且为大写;
value必需。规定常量的值。//value的值一般为字符串或者数字
case_insensitive
可选。规定常量的名称是否对大小写敏感。
若设置为 true,则对大小写不敏感。默认是 false(大小写敏感)。
define函数理解3(着重于实例理解)
问题1:一个大小写敏感的常量:
<?php define("HF","Hi Friend!");//1.define函数如何理解; echo constant("HF");//1.case_insensitive参数默认是 false(大小写敏感)2.constant函数如何理解; 3.constant内的参数如何理解; ?>
输出结果为:Hi Friend!
注意:符号输入准确,否则容易出错
define函数理解4
问题:2:一个大小写不敏感的常量:
<?php define("HF","Hi Friend!",TRUE);//1.define函数如何理解; 2.define内的3个参数如何理解; echo constant("hf"); //1.echo函数如何理解;2.constant函数如何理解; 3.constant函数输入时是否可以不区分大小写; 4.constant函数内的参数如何理解; ?>
输出的结果为:Hi Friend!
相关视频教程:PHP视频教程
Atas ialah kandungan terperinci php中define的含义及用法详解. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!