14-casting2.php
<?php
class Car {
public $color;
public $model;
public function __construct($color, $model) {
$this->color = $color;
$this->model = $model;
}
public function message() {
return "My car is a " . $this->color . " " . $this->model . "!";
}
}
$myCar = new Car("red", "Volvo");
var_dump($myCar);
echo "</br>";
$myCar = (array) $myCar;
var_dump($myCar);
?>
=
No comments:
Post a Comment