Created
October 16, 2011 18:38
-
-
Save DQNEO/1291250 to your computer and use it in GitHub Desktop.
__constructの落とし穴。parent::ClassName()で呼び出すとFatal Errorになる。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Mother | |
{ | |
public function __construct() | |
{ | |
echo "I am Mother. \n"; | |
} | |
} | |
class Child extends Mother | |
{ | |
public function __construct() | |
{ | |
parent::Mother(); | |
echo "I am Child. \n"; | |
} | |
} | |
$obj = new Child; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment