fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. class ClassName
  6. {
  7. function __construct($text = '')
  8. {
  9. return "sometext $text";
  10. }
  11. }
  12.  
  13. $obj = new ClassName();
  14. echo $obj->__construct('new text');
  15.  
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
sometext new text