Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class Animal {
- public function Andar() {
- echo "o animal andou";
- }
- public function Correr() {
- echo "o animal Correu";
- }
- }
- class Cavalo extends Animal{
- public function Andar(){
- $this->Correr();
- }
- }
- $animal = new Cavalo();
- $animal->Andar();
Advertisement
Add Comment
Please, Sign In to add comment