<?php
class Dog {
 
 /** @var int */
 static $_woofs = 0;
 
 function Woof() {
  Dog::$_woofs ++;
 }
}
PHP Peachpie Snippet static fields