خاصية static methods and Properties static
يمكن إضافة كلمة static أمام الدالة أو المتغير ويؤدي ذلك إلى إمكانية استدعاء هذه الدالة أو التغير مباشرة مع اسم الفصيلة بدون الحاجة إلى تعريف متغير كما في السطور التالية
<?php
/*** a simple class ***/
class my Class {
/*** a static variable ***/
static $ foo;
}
/** give the static variable a value ***/
My Class:: $ foo = ‘Bar’؛
/*** echo the static variable ***/
echo (my Class $ foo).