fork download
  1. <?php
  2.  
  3. class Object
  4. {
  5. public $property;
  6. }
  7. function get_object () {
  8. return new Object;
  9. }
  10.  
  11. echo get_object()->property = 3;
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
3