Ben üye değişkenleri ile bir sınıf var. What is the syntax in PHP to access the member variables from within the class when the class is being called from a static context?
Temelde ben bir sınıf yöntemi çağırmak (ama yeni bir nesne oluşturmak değil) istediğiniz, ancak sınıf yöntemi çağrıldığında, ben statik sabit değişkenler bir avuç farklı bir sınıf yöntemleri arasında paylaşılacak bu ihtiyacı başlatıldı olmak istiyorum.
OR if there's a better way to do it then what I'm proposing, please share with me (I'm new to PHP) Thanks!
örn.
class example { var $apple; function example()//constructor { example::apple = "red" //this throws a parse error } }