Created
April 23, 2014 17:27
-
-
Save devmatheus/11225093 to your computer and use it in GitHub Desktop.
Revisions
-
devmatheus created this gist
Apr 23, 2014 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ <?php class A { public function foo() { echo "foo"; } } class B extends A { public function foo() { echo "classe B\n"; parent::foo(); // parent:: faz referência a classe base, no caso "A" } } (new B)->foo(); /** * output * classe B * foo */