fork(7) download
  1. <?php
  2.  
  3. trait test{
  4. public function __construct()
  5. {
  6. echo 'test';
  7. }
  8. }
  9.  
  10. class myClass{
  11. use test {
  12. test::__construct as private __tConstruct;
  13. }
  14. public function __construct(){
  15. $this->__tConstruct();
  16. }
  17. }
  18. new myClass();
  19.  
  20. ?>
Success #stdin #stdout 0.01s 23584KB
stdin
Standard input is empty
stdout
test