我有一个问题:
我正在编写一个没有框架的新 WebApp。
在我的index.php中,我正在使用:require_once('load.php');
在load.php我require_once('class.php');
用来加载我的class.php。
在我的class.php中,我遇到了这个错误:
致命错误:当不在 class.php 的对象上下文中时使用 $this 在线...(在此示例中为 11)
我的class.php是如何编写的示例:
class foobar {
public $foo;
public function __construct() {
global $foo;
$this->foo = $foo;
}
public function foobarfunc() {
return $this->foo();
}
public function foo() {
return $this->foo;
}
}
在我的index.php中,我正在加载可能foobarfunc()
是这样的:
foobar::foobarfunc();
但也可以
$foobar = new foobar;
$foobar->foobarfunc();
为什么会出现错误?