Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php class Fruit { final public function intro() { } } class Strawberry extends Fruit { // entraînera une erreur public function intro() { } } ?> </body> </html>
Erreur fatale PHP : Impossible de remplacer la méthode finale Fruit::intro() dans /home/sdpysj/prog.php à la ligne 15