LoginSignup
3
2

More than 5 years have passed since last update.

クラス名と同じ名前のメソッド

Posted at

初投稿。
メモ的な意味で残しておきます。

class ABC{
    function ABC(){
        echo "hoge";
    }
}
$a = new ABC();
$a->ABC();

上記のような記述で結果は

hogehoge

と出ます。

$a = new ABC();

とした時点でクラスABCのメソッドABCが呼ばれてることになる。
勉強になったようなそうでないような。

3
2
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2