Ben bir sorun var:
Ben bir Framework olmadan yeni WebApp yazıyorum.
In my index.php im using: require_once('load.php');
and in * load.php* I'm using require_once('class.php');
to load my class.php.
Benim in class.php Ben bu hatayı var:
Ölümcül hata: $ bu zaman kullanma değil on line class.php nesne bağlamında ... (bu örnekte 11 olurdu)
Bir örnek nasıl benim class.php yazılır:
class foobar {
public $foo;
public function __construct() {
global $foo;
$this->foo = $foo;
}
public function foobarfunc() {
return $this->foo();
}
public function foo() {
return $this->foo;
}
}
Benim index.php I foobarfunc()
Bunun gibi belki yükleme ediyorum:
foobar::foobarfunc();
ama aynı zamanda olabilir,
$foobar = new foobar;
$foobar->foobarfunc();
Neden hata geliyor?