分类: PHP
2013-10-12 10:40:54
Strict standards: Declaration of ... should be compatible with that of ...
解决办法:
- <?php
- abstract class A {
- // 方法无参数
- public static function foo(){ echo 'bar'; }
- }
- abstract class B extends A {
- // 方法有参数
- public static function foo($str = NULL){ echo $str; }
- }
- ?>
类B在重写foo方法时为新加入的参数指定一个默认值即可。