Scope(::) Operatörü, Scope Operatör İle Sınıfı Örnekleme Olamadan new İle Nesne Oluştmadan Çağırabiliriz. Sınıf İçerisinde static Özellikte Olan Tüm Özellik Ve Methodlara Erişim Sağlayabiliriz.
Kullanımı ;
sinifAdi::method();
Gibidir.class ornekSinif{
public static $ozellik = "Özellik";
public static function method(){
echo "Method İçeriği";
}
}
ornekSinif::method();
echo "<br>";
echo ornekSinif::$ozellik;
$nesne = ornekSinif;
$nesne::method();