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 { // Propriétés var $name; var $color; // Méthodes function __construct($name, $color) { $this->name = $name; $this->color = $color; } function __destruct() { echo "Le fruit est {$this->name} et la couleur est {$this->color}."; } } $apple = new Fruit("Apple", "red"); ?> </body> </html>
Le fruit est Apple et la couleur est rouge.