Guest User

Untitled

a guest
Aug 19th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class some
  2. {
  3. public function __construct()
  4. {
  5. $this->test();
  6. }
  7.  
  8. public function test()
  9. {
  10. return 'abc';
  11. }
  12. }
  13.  
  14. $some = new some;
  15.  
  16.  
  17. echo $some;
  18.  
  19. print_r($some);
Add Comment
Please, Sign In to add comment