Der Code lautet wie folgt:
<?php
class Demo
{
public function testing()
{
echo "testing\n";
}
}
Demo::testing();
php7.0-Ausführungsausgabe:
$ php demo.php
testing
php5.6-Ausführungsausgabe
$ php demo.php
PHP Strict Standards: Non-static method Demo::testing() should not be called statically in /home/runner/Code/funny/demo.php on line 11
testing
Gibt es auch so eine Bedienung?? Was ist das Prinzip??
http://www.laruence.com/2012/...
哈哈哈,感谢大家回答. 具体原因看上面鸟哥这篇文章吧
5.6 版本以下的 类假如无需实例化而直接调用方法与属性,该方法和属性必须是静态方法,即Demo类要直接调用testing方法,testing必须 public static function testing() { }。不然就会报错。
我不知道7.0以上是不是可以无需声明
看到了, 只是 php-cli 会执行, 在php-fpm 还是不会
虽然这样是可以使用的,但是也不建议这么做。
php7.0是可以这么写的,但是php5.6肯定不可以,写成self::testing也是可以的
__callStatic()
可以认为是PHP的实现不严谨.
如果非static方法里面没有使用$this, 可以用::调用.