Skip to content

Instantly share code, notes, and snippets.

@devmatheus
Created April 23, 2014 17:27
Show Gist options
  • Save devmatheus/11225093 to your computer and use it in GitHub Desktop.
Save devmatheus/11225093 to your computer and use it in GitHub Desktop.

Revisions

  1. devmatheus created this gist Apr 23, 2014.
    23 changes: 23 additions & 0 deletions parent.php
    Original 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
    */