首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

继承父类的时候 _construct报异常

2012-07-15 
继承父类的时候 __construct报错误。php, __construct, post继承父类的时候 __construct报错误。wclass a{fu

继承父类的时候 __construct报错误。
php, __construct, post
继承父类的时候 __construct报错误。
w
class a{
  function __construct(){
  $this->post();
  }

  function post(){
  //$_POST
  }
}

子类b.php
class b extends a{

  //默认父类__construct()

  functoin index(){
  //
  }
}

问题,在用get浏览b.php文件时,能正常浏览,用post提交数据时,报错,
post数据,在注册父类的__construct,或者复写子类的__construct后就正常。。


[解决办法]
汗... 那还不结贴?

热点排行