PHP5: const vs static
在php5中,使用
在类的上下文中,静态变量在类范围(而不是对象)范围内,但与常量不同,它们的值可以更改。
1 2 3 4 5 6 7 8 | class ClassName { static $my_var = 10; /* defaults to public unless otherwise specified */ const MY_CONST = 5; } echo ClassName::$my_var; // returns 10 echo ClassName::MY_CONST; // returns 5 ClassName::$my_var = 20; // now equals 20 ClassName::MY_CONST = 20; // error! won't work. |
public、protected和private在consts方面不相关(consts总是public);它们只对类变量(包括静态变量)有用。
- 公共静态变量可以通过classname::$variable在任何地方访问。
- 受保护的静态变量可以通过定义类或通过classname::$variable扩展类来访问。
- 只有通过classname::$variable定义类才能访问私有静态变量。
编辑:需要注意的是,php 7.1.0引入了对指定类常量可见性的支持。
最后一点应该指出的是常量总是静态的和公共的。这意味着您可以从类内访问const,如下所示:
1 2 3 4 5 6 7 8 | class MyClass { const MYCONST = true; public function test() { echo self::MYCONST; } } |
从类外部,您可以这样访问它:
1 | echo MyClass::MYCONST; |
常量只是一个常量,即不能在声明后更改其值。
静态变量可以在不生成类实例的情况下访问,因此在类的所有实例之间共享。
此外,函数中可以有一个静态局部变量,该变量只能声明一次(在函数的第一次执行时),并且可以在函数调用之间存储其值,例如:
1 2 3 4 5 6 | function foo() { static $numOfCalls = 0; $numOfCalls++; print("this function has been executed" . $numOfCalls ." times"); } |
在讨论类继承时,可以使用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
然后这样做:
1 2 |
或:
1 |
输出:
1 2 3 4 | string(6)"person" string(6)"pirate" string(6)"person" string(6)"pirate" |
将类方法或属性声明为static使它们可以访问,而无需实例化类。
类常量和普通常量一样,不能在运行时更改。这也是使用const的唯一原因。
private、public和protected是访问修饰符,用于描述谁可以访问哪个参数/方法。
public意味着所有其他对象都可以访问。private意味着只有实例化的类才能获得访问权。保护意味着实例化类和派生类可以访问。
以下是我迄今为止学到的关于静态成员、常量变量和访问修饰符(private、public和protected)的知识。常数
定义
就像名字所说的,常量变量的值是不可更改的。常量不同于普通变量,因为您不需要使用$符号来声明或使用它们。
该值必须是常量表达式,而不是(例如)变量、属性、数学运算的结果或函数调用。
Note : The variable's value can not be a keyword (e.g. self, parent
and static).
在PHP中声明常量
1 2 3 4 5 6 7 |
常量的作用域是全局的,可以使用self关键字访问。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <?php class MyClass { const CONSTANT = 'constant value'; function showConstant() { echo self::CONSTANT ." "; } } echo MyClass::CONSTANT ." "; $classname ="MyClass"; echo $classname::CONSTANT ." "; // As of PHP 5.3.0 $class = new MyClass(); $class->showConstant(); echo $class::CONSTANT." "; // As of PHP 5.3.0 ?> |
静态的
定义
静态关键字可用于声明类、成员函数或变量。类中的静态成员是全局成员,也可以使用self关键字访问。将类属性或方法声明为静态将使它们可以访问,而无需实例化类。不能使用实例化的类对象(尽管静态方法可以)访问声明为静态的属性。如果不使用可见性声明(public、private、protected),则该属性或方法将被视为已声明为public。因为静态方法在没有创建对象实例的情况下是可调用的。
Note : the pseudo-variable $this is not available inside the method
declared as static.Static properties cannot be accessed through the
object using the arrow operator ->As of PHP 5.3.0, it's possible to reference the class using a variable. The >variable's value cannot be a keyword (e.g. self, parent and static).
静态属性示例
1 2 3 4 5 6 7 8 9 10 11 | <?php class Foo { public static $my_static = 'foo'; //static variable public static function staticValue() { //static function example return self::$my_static; //return the static variable declared globally } } ?> |
访问静态属性和函数示例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <?php print Foo::$my_static ." "; $foo = new Foo(); print $foo->staticValue() ." "; print $foo->my_static ." "; // Undefined"Property" my_static print $foo::$my_static ." "; $classname = 'Foo'; print $classname::$my_static ." "; // As of PHP 5.3.0 print Bar::$my_static ." "; $bar = new Bar(); print $bar->fooStatic() ." "; ?> |
公共、私有、受保护(即访问修饰符)
在阅读下面的定义之前,请阅读这篇关于封装的文章,它将帮助您更深入地理解这个概念。
链接1维基百科
关于封装的教程点链接
定义
使用私有的、公共的、受保护的关键字,可以控制对类中成员的访问。声明为公共的类成员可以在任何地方访问。声明为受保护的成员只能在类本身内以及由继承类和父类访问。声明为私有的成员只能由定义该成员的类访问。
例子
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <?php class Example{ public $variable = 'value'; // variable declared as public protected $variable = 'value' //variable declared as protected private $variable = 'value' //variable declared as private public function functionName() { //public function //statements } protected function functionName() { //protected function //statements } private function functionName() { //private function //statements } } ?> |
访问公共、私有和受保护的成员示例
Public variable's can be accessed and modified from outside the class
or inside the class. But You can access the private and protected variables and functions only from inside the class , You can't modify the value of protected or Public members outside the class.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | <?php class Example{ public $pbVariable = 'value'; protected $protVariable = 'value'; private $privVariable = 'value'; public function publicFun(){ echo $this->$pbVariable; //public variable echo $this->$protVariable; //protected variable echo $this->privVariable; //private variable } private function PrivateFun(){ //some statements } protected function ProtectedFun(){ //some statements } } $inst = new Example(); $inst->pbVariable = 'AnotherVariable'; //public variable modifed from outside echo $inst->pbVariable; //print the value of the public variable $inst->protVariable = 'var'; //you can't do this with protected variable echo $inst->privVariable; // This statement won't work , because variable is limited to private $inst->publicFun(); // this will print the values inside the function, Because the function is declared as a public function $inst->PrivateFun(); //this one won't work (private) $inst->ProtectedFun(); //this one won't work as well (protected) ?> |
有关更多信息,请阅读此PHP文档关于可见性和可见性的PHP文档
参考文献:php.net
希望你理解这个概念。谢谢你的阅读:)祝你过得愉快
回顾一下@matt great answer:
在大多数情况下,您需要一个私有/受保护的静态属性,因此常量不是一个选项。
如果您需要的属性是公开可用的,但没有更改,则A常量是正确的选择。
例子:
1 2 3 4 5 6 7 8 9 | class User{ private static $PASSWORD_SALT ="ASD!@~#asd1"; ... } class Product{ const INTEREST = 0.10; ... } |