PHP - Bir sınıftan erişim fonksiyonu

0 Cevap php

Ben gibi bir sınıf vardır:

class bla_bla extends WP_Widget {

  function boo(){
    return 'something';
  }

  ...
}

(Bu bir WordPress Widget bulunuyor)

How can I access the boo() function from outside the class? I want to assign the value returned by that function to a variable, like $var = boo();

0 Cevap