fork download
  1. <?php
  2. class HelloWord
  3. {
  4.  
  5. public $phrase1;
  6. public $phrase2;
  7.  
  8. public function __construct()
  9. {
  10. $this->phrase1 = 'Olá';
  11. $this->phrase2 = 'Mundo';
  12. }
  13.  
  14. }
  15.  
  16. $phrase = get_object_vars(new HelloWord());
  17.  
  18. echo print_r($phrase, true);
  19. ?>
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
Array
(
    [phrase1] => Olá
    [phrase2] => Mundo
)