fork download
  1. <?php
  2. class CalkSum{
  3. public function __construct($firstNumber){
  4. $this->firstNumber = $firstNumber;
  5. }
  6. }
  7.  
  8. $test = new CalkSum(666);
  9.  
  10. echo $test->firstNumber;
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
666