Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class foo {
  2.     static $bar = 4;
  3.    
  4.     function __construct() {
  5.         return static::$bar;
  6.     }
  7. }
  8.  
  9. class baz {
  10.     static $bar = 0;
  11. }
  12.  
  13. echo new foo(); // 4
  14. echo new baz(); // 0