一.前言 php是世界上最好的语言 php从面向过程走到现在成熟的面向对象体系, 在php面向对象中,静态变量的调用我们可以用这两个self::method和 static::method, 但是很多童鞋迷惑,不理解self::method和static::method有什么区别,下面给出两个例子一看究竟: 例子1: class Car { public static function model() { self::getModel(); } protected static function…
+-------------------------+---+--------+--------+--------+----------+ | Class Type | | normal | static | sealed | abstract | +-------------------------+---+--------+--------+--------+----------+ | Can be instantiated | : | yes | no | yes | no | | Can…