Run ❯
Get your
own PHP
server
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <?php class Fruit { final public function intro() { } } class Strawberry extends Fruit { // will result in error public function intro() { } } ?> </body> </html>
PHP Fatal error: Cannot override final method Fruit::intro() in /home/sdpysj/prog.php on line 15