関数の名前付けに問題があります。クラスがあり、以下のような2つの関数が必要です。
class myclass {
public function tempclass () {
echo "default";
}
public function tempclass ( $text ) {
echo $text;
}
}
電話すると
tempclass('testing'); // ( called after creating the object )
function tempclass()
が呼び出されていますが、名前が同じでパラメーターが異なる 2 つの関数を使用するにはどうすればよいですか?