我最近对PHP 5.4进行了更新,我收到有关静态和非静态代码的错误。
这是错误:
PHP Strict Standards: Non-static method VTimer::get()
should not be called statically in /home/jaco/public_html/include/function_smarty.php on line 371
这是第371行:
$timer = VTimer::get($options['magic']);
我希望有人可以提供帮助。
答案 0 :(得分:50)
这意味着它应该被称为:
$timer = (new VTimer)->get($options['magic']);
static
和non-static
之间的区别在于第一个不需要初始化,因此您可以调用classname
然后将::
附加到其中并调用方法立即。
像这样:
ClassName::method();
如果方法不是静态的,你需要像这样初始化它:
$var = new ClassName();
$var->method();
但是,在PHP 5.4中,您可以使用此语法作为简写:
(new ClassName)->method();
答案 1 :(得分:5)
您还可以将方法更改为静态,如下所示:
class Handler {
public static function helloWorld() {
echo "Hello world!";
}
}
答案 2 :(得分:2)
最优雅的方式是:
(new ClassName)->method();
您还可以将函数转换为static function call() {}
,但这取决于您的函数以及它的功能。
如果您需要实例化一个类,然后避免这样做,请将静态函数视为常量,它们不能具有对象并且需要预定义的变量。
答案 3 :(得分:0)
我以这种方式解决了这个问题。
error_reporting('E_NONE');// add this in the pdf dwonload function
$this->load->library('mpdf/mpdf');
这应该有帮助。