目录

博客目录

http://www.foxwho.com/article/24

CSDN目录

http://blog.csdn.net/fenglailea/article/details/60330101

风.fox

常量

用 const 关键词表示

允许常量计算,允许使用包含数字、字符串字面值和常量的标量表达式

const TIME_NOW="2017-9-9";
echo TIME_NOW;

const A = 2;
const B = A + 1;
class C
{
    const STR = "hello";//公共常量
    const STR2 = self::STR + ", world";//公共常量
    const PUBLIC_CONST_A = 1;//公共常量
    public const PUBLIC_CONST_B = 2;//公共常量
    protected const PROTECTED_CONST = 3;//有限度的常量
    private const PRIVATE_CONST = 4;//私有常量
}

其他常量表示

用define() 函数

define("TIME_NOW", 2017-09-09");
echo TIME_NOW;

常量 都用大写字母表示,多个单词中间用下划线隔开

判断该常量是否已定义

if(defined('TIME_NOW')){
    echo "已定义";
}else{
    echo "没有定义";
}

常量数组

define('ANIMALS', ['dog', 'cat', 'bird']);
echo ANIMALS[1]; // outputs "cat"

 Tags : php 常量

Donate:| 文章有帮助,可以 请我喝杯咖啡

Powered by foxwho.com 浙ICP备19037334号-1