コンストラクターのような親クラスの名前で試してみましたが、部分的に機能します。
への最初の呼び出し
「ダースベイダー法」
コンストラクターと同様ですが、決して呼び出しません
「ルーク・スカイウォーカー・コンストラクター」..
誰かがそれを行う方法を知っていますか?
例:
Darth.php
class DarthVader{
public function DarthVader(){
echo "-- Obi-Wan never told you what happened to your father.\n";
}
public function reponse(){
echo "-- No. I am your father\n";
}
}
ルーク.php
include("Darth.php")
class LukeSkywalker extends DarthVader{
public function __constructor(){
echo "- He told me enough! He told me you killed him!\n"
$this->response();
}
}
期待される結果:
オビワンはあなたの父親に何が起こったかをあなたに話しませんでした。
彼は私に十分に言った!彼はあなたが彼を殺したと言った !
いいえ、私はあなたのお父さんです
私は本当にそれを自動的に望んでいます。