fork(1) 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 implode(' ', $phrase);
  19. ?>
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Olá Mundo