PHP はクラス継承のコード例を拡張します: < ?php class a{ パブリック $x パブリック $ y; ){ $this ->x=$x; > y =$y; } function getx(){ return $this-> x; } function gety(){ return $this->y } function __destruct(){} } class a2 extends a{} /*extends は継承関数です*/ $b2=new a2(10,10); エコー$ b2->getx ()."<br>"; ?> 上記の紹介は、PHP 拡張クラス継承のすべての実装手順です。 http://www.bkjia.com/PHPjc/446027.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/446027.html技術記事 PHP の拡張クラス継承コードの例: ?php classa{ public$x; function__construct($ x = 0 ,$ y = 0 ) { $this- y =$y; (){ return$this-x } 関数...