最新回答 / Alexander博士
解决了,,因为子类的构造函数 会覆盖父类的构造函数,,于是在子类中声明构造函数的时候,需要在子类中继承父类的构造函数,以使父类的构造函数依然生效。代码:public function __construct($table1) { $this->table = $table1; parent::__construct(); //祸根就出在这里!!! }
2018-08-31
最赞回答 / qq_咱走_0
define('IMOOC',realpath('./'));define('CORE',IMOOC.'/core');define('APP',IMOOC.'/app');define('DEBUG',true );if(DEBUG){ ini_set('display_error','on');}else{ ini_set('display_error','off');}include CORE.'/common/function.php';p(IMOOC);
2018-05-09