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> <pre> <?php class Car { public $couleur; public $modèle; public function __construct($color, $model) { $this->color = $color; $this->model = $model; } public function message() { return "Ma voiture est une " . $this->color . " " . $this->model . "!"; } } $myCar = new Car("rouge", "Volvo"); $myCar = (array) $myCar; var_dump($myCar);?> </pre> </body> </html>
array(2) { ["couleur"]=> string(3) "rouge" ["modèle"]=> string(5) "Volvo" }