欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php种常量定制及使用方法

程序员文章站 2022-06-12 20:45:51
...
php类常量定制及使用方法

?

实例代码如下:

/*
?* To change this template, choose Tools | Templates
?* and open the template in the editor.
*/

/**
?* Description of classConstSample
?*
?* @author liujl
?*/
class classConstSample {
??? const constVarTest="http://www.my400800.cn
";


??? static public function? showMsgTest() {
??????? echo "利用内部方法输出常量值:".self::constVarTest;
??? }

}

//常量调用输出测试
classConstSample::showMsgTest();
echo "直接输出常量值:".classConstSample::constVarTest;

?>

?

?

输出结果如下:

?

?

利用内部方法输出常量值:http://www.my400800.cn
直接输出常量值:http://www.my400800.cn

?

输出结果 截图如下:


php种常量定制及使用方法

php种常量定制及使用方法

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频