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 Car { public $couleur; public $modèle; public function __construct($color, $model) { $this->color = $color; $this->model = $model; } } $myCar = new Car("rouge", "Volvo"); foreach ($myCar as $x => $y) { echo "$x: $y<br>"; } ?> </body> </html>
color: red
model: Volvo