Skip to content

Instantly share code, notes, and snippets.

@DQNEO
Created October 16, 2011 18:38
Show Gist options
  • Save DQNEO/1291250 to your computer and use it in GitHub Desktop.
Save DQNEO/1291250 to your computer and use it in GitHub Desktop.
__constructの落とし穴。parent::ClassName()で呼び出すとFatal Errorになる。
<?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