Ben nasıl ben sınıfın boyunca bu nesne kullanılabilir yapabilir "__construct" bir nesneyi çağıran bir sınıf oluşturduk.
class SocialMedia { function __construct() { $object = "whatever"; } }
how can I access $object in the other functions (which are static) from with in the class. I've tried to use "$this->object" but I get an error "$this when not in object context" when I try to call it from my other static functions.