php类中常量的用法举例

发布时间:2020-09-20编辑:脚本学堂
本文介绍下,在php面向对象中使用常用的例子,学习下在php类中定义与使用常量的方法,有需要的朋友参考下。

例1,在php类中定义常量
 

复制代码 代码示例:
<?php
class Employee {
    //定义常量
    const AVAILABLE      = 0;
    const OUT_OF_STOCK   = 1;
    public $status;
}
print Employee::AVAILABLE;
?>

例2,定义类中的常量
 

复制代码 代码示例:

<?php
   class math_functions {
    //定义常量
     const PI = '3.14159265';
     const E = '2.7182818284';
     const EULER = '0.5772156649';
     /* 在这里定义其它的常量与方法... */
   }

   echo math_functions::PI;
?>