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 { public $name; public $couleur; function __construct($name) { $this->name = $name; } function __destruct() { echo "Le fruit est {$this->name}."; } } $apple = new Fruit("Apple"); ?> </body> </html>
Le fruit est Apple.