0 Members and 1 Guest are viewing this topic.
<html> <head> <title>Override!</title> </head> <body> <p> <?php class Vehicle { public function honk() { return "HONK HONK!"; } } // Add your code below! class Bicycle extends Vehicle{ public function honk(){ return "Beep beep!"; } } $bicycle = new Bicycle(); $bicycle -> honk(); ?> </p> </body></html>
echo $bicycle->honk();
It crashes because science.
Otherwise buy a big nigger cock toy.
$bicycle = new Bicycle();$output = $bicycle->honk();echo $output;