Home >Backend Development >PHP Tutorial >一个值可以有不同的恒量名?

一个值可以有不同的恒量名?

WBOY
WBOYOriginal
2016-06-13 12:13:12989browse

一个值可以有不同的常量名??
例如这样

// 开关状态
define('YES_VALUE', 1);
define('NO_VALUE', 2);

//性别
define('MALE_VALUE', 1);
define('FEMALE_VALUE', 2);
define('UNKNOW_VALUE', 3);

------解决思路----------------------
对的
常量名只是为了帮助记忆的符号
------解决思路----------------------
这个是可以有的~~
------解决思路----------------------
這個可以。
與變量一樣,都是值與名稱對應的。

------解决思路----------------------
可以,常量名只是一个符号而已
------解决思路----------------------
常量就是标示符名称而已,便于区别。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn