更多详细信息6.variable_scope(变量的作用域 global html' target='_blank'>static)static_variables.php 更多详细信息
7.reference(引用)
variable_reference.php 更多详细信息
对象 OOP1.Fatal error: Using $this when not in object context这个错误刚学 OOP 肯定容易出现,因为有个概念你没有真正理解。 类的可访问性(accessible),也可以说是作用域, 你还可以认为是 1个 中国人 在国外,他不属于哪个文化,他不讲外语(可能他知道点);但是他无法通过自己跟老外沟通,因为他们不是在一个共同国度出生。 那么错误是如何发生的呢?看下面的例子:复制代码 代码如下: ?php class Trones{ static public $fire = "I am fire."; public $water = "I am water";
static function getFire( ) { return $this- fire ; // wrong } static function getWater( ) { return $self::water ; // wrong }
static function Fire( ) { return self::$fire ; // be sure you use self to access the static property before you invoke the function } }
/* Fatal error: Using $this when not in object context */ //echo Trones::getFire( ) ; //echo Trones::getWater( ) ;
// correct echo Trones::Fire( ); echo " br / $trones = new Trones ; $trones- fire ; // Notice: Undefined property: Trones::$fire (base on defferent error setting) simple is error echo Trones::$fire ; 这个错误很经典, 也很实用,先看 static 的定义:Declaring class properties or methods as static makes them accessible without needing an instantiation of the class. A property declared as static can not be accessed with an instantiated class object (though a static method can).翻译:定义一个类的属性或方法为静态时,可以使他们在不需要初始化一个类时就能直接访问 。一个被定义为了静态的属性不能被类的对象用对象操作符访问* - *,(可以通过静态的方法访问)。例子说明: 7行 10行 犯了同一个错误,第一个是用对象操作符来访问静态变量。你看看定义,$this 是一个伪变量 相当于 object,一个实例。你用对象操作符 - 访问就会报错。同样你也不能用 静态操作符 :: 来访问一个公共变量 。 正确的访问应该是 14行 25行,一个是在类的定义里访问(self:: === Trones::),一个是在类的外部访问。对于继承类,以上的规则同样适合。2.Fatal error: Call to private method 最近有部连续剧很好看,叫权利的游戏,我们假设有 3方人马, 7个国王, 平民, 龙女。 他们三方人马在下面争夺最终的胜利, 也就是王冠。下面的故事还有一个标题:类的可见性(visibility) 你如果知道最终的答案,解释部分你可以略过了。复制代码 代码如下: ?php class Trones { protected $fire = " fire "; public $water = " water " ; static private $trones = "Trones";
protected function getFire( ) { $this- fire ; }
static public function TheDragenOfMather( ) { return __METHOD__." use ".$this- getFire()." gets the ".self::getTrones( ) ; }
static public function getWater( ) { return __METHOD__ ; }
static private function getTrones( ) { return self::$trones ; }
}
class Kings extends Trones { static function TheSevenKing( ) { return __METHOD__."gets the ".self::getTrones( ); } }
class People extends Trones{ static function ThePeople( ) { return __METHOD__."gets the ".self::getTrones( ); } } echo Kings::TheSevenKing( ) ; echo Trones::TheDragenOfMather( ) ; echo People::ThePeople( ) ;