2012年4月1日
摘要: 先上段代码:class B { function __construct(){ echo "call: B.construct\n"; } public function display() { echo "in display:\n"; $this->__construct(); }}class A extends B { private $_c; function __construct(){ echo "call: A.construct\n"; parent::__... 阅读全文
posted @ 2012-04-01 14:31 龍之心 阅读(248) 评论(0) 推荐(0)