Guest User

Untitled

a guest
Jun 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2.  
  3. class test{
  4.    
  5.     const TESTER = 'my test';
  6.    
  7.     public function __construct(){
  8.         echo self::TESTER . '<br />';
  9.     }
  10. }
  11.  
  12. $class = new test();
  13. echo $class::TESTER;
  14.  
  15.  
  16.  
  17. ?>
Add Comment
Please, Sign In to add comment