fork(50) download
  1. <?php
  2. class Car
  3. {
  4. public $color;
  5. public $type;
  6. }
  7.  
  8. $myCar = new Car();
  9. $myCar->color = 'red';
  10. $myCar->type = 'sedan';
  11.  
  12. $yourCar = new Car();
  13. $yourCar->color = 'blue';
  14. $yourCar->type = 'suv';
  15.  
  16. $cars = array($myCar, $yourCar);
  17.  
  18. echo $cars[1]->color;
  19. // your code goes here
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
blue