Bir sınıftaki tüm işlevi nesne genel yapmak nasıl?

0 Cevap php

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.

0 Cevap