Advertisement
Guest User

Untitled

a guest
Nov 27th, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1.       <?php
  2.         class Vehicle {
  3.           public function honk() {
  4.             return "HONK HONK!";
  5.           }
  6.         }
  7.         class Bicycle extends Vehicle {
  8.             public function honk() {
  9.                 return "Beep beep!";
  10.             }
  11.         }
  12.         $bicycle = new Bicycle();
  13.         echo $bicycle->honk();
  14.       ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement