Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. class myClass {
  2.  
  3.     static $myVariable = 'THIS IS WORK!';
  4.  
  5.     static function myFunction() {
  6.  
  7.         return self::myVariable;
  8.  
  9.     }
  10. }
  11.  
  12. echo myClass::myFunction();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement