1 '; 19 } 20 static public function eat(){ 21 echo '静态方法吃饭'; 22 } 23 public function intro(){ 24 echo $this->name; 25 } 26 } 27 Error_reporting(E_ALL|E_STRICT); 28 //此时没有对象!方法可以执行 29 Human::eat(); 30 /* 31 以下方法easyeat是一个非静态方法,就由对象来调用,但,用类来调用此方法来也可以执行,而严格状态下,此方法会执行,同时报错, 32 Strict Standards: Non-static method Human::easyeat() should not be called statically in D:\application\PHPnow-1.5.6\htdocs\yan18\types\staticfun.php on line 3233 34 */35 Human::easyeat(); 36 /* 37 接上,从逻辑来理解,如果用类名静态调用非静态(普通)方法 38 比如:intro() 39 那么,这个$this是指哪个对象呢?? 40 因此会报错,因为找不到对象! 41 Fatal error: Using $this when not in object context in D:\application\PHPnow-1.5.6\htdocs\yan18\types\staticfun.php on line 23 42 */43 Human::intro();44 45 /* 46 如上分析,其实,非静态方法,是不能由类名静态调用的,但目前,php中的面向对象检测不够严格,只要静态方法中没有$this关键字,就会转化成静态方法来处理! 47 */48 $li=new Human(); 49 $li->eat();50 51 /* 52 总结: 53 类》访问->静态方法(类的方法)->可以 54 类》访问->普通方法(对象的方法)->不可以(虽然方法里不用$this关键字时,可以!但不支持这种写法)55 56 对象》访问》静态方法(类的方法)->可以 57 对象》访问》普通方法(对象的方法)->可以58 59 */60 ?>