PHP class: Global variable vs Accessbale varibales
本问题已经有最佳答案,请猛点这里访问。
我怀疑下面的课程有什么区别。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | class Test { var $location; public function __construct() { $this->location = 'India'; } } class Test { protected $location; public function __construct() { $this->location = 'India'; } } |
为什么我们使用var? 这里使用var作为全局的目的是什么?
请澄清我。
变量名前的
VAR
使用
保护
使用
Note: The PHP 4 method of declaring a variable with the var keyword is still supported for compatibility reasons (as a synonym for the public keyword). In PHP 5 before 5.1.3, its usage would generate an E_STRICT warning.
在这里阅读更多