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 public $name; public $couleur; // Méthodes function set_name($name) { $this->name = $name; } function get_name() { return $this->name; } function set_color($color) { $this->color = $color; } function get_color() { return $this->color; } } $apple = new Fruit(); $apple->set_name('Pomme'); $apple->set_color('Rouge'); echo "Nom : " . $apple->get_name(); echo "<br>"; echo "Couleur : " . $apple->get_color(); ?> </body> </html>
Name: Apple
Color: Rouge