fork download
  1. <?php
  2.  
  3. // your code goes here
  4. class Test {
  5. public function __construct($test = 'ralph') {
  6. echo $test;
  7. }
  8. }
  9.  
  10. $one = new Test;
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
ralph