fork(1) download
  1. <?php
  2.  
  3. class Mc {
  4. private $QueryFormPath = __DIR__ . '/' . 'queryform';
  5.  
  6. public function showX()
  7. {
  8. return $this->QueryFormPath;
  9. }
  10. }
  11.  
  12.  
  13. $a = new Mc();
  14. echo $a->showX();
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
/home/rHCOVX/queryform