Home > Backend Development > PHP Tutorial > PHP是可以对非静态方式的方法进行静态形式的调用的

PHP是可以对非静态方式的方法进行静态形式的调用的

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 11:55:28
Original
864 people have browsed it

PHP是可以对非静态形式的方法进行静态形式的调用的。

本帖最后由 lytreo650 于 2014-03-14 10:05:21 编辑
<?php<br />class test {<br />	public function sayHello () {<br />		echo 'Hello World';<br />      }<br />}<br />test::sayHello();<br />
Copy after login


运行上面这段代码可以打印出hello world,而且不会报错。
但是我看《深入PHP面向对象,模式与实践》这本书上面明确写着
只有在使用parent关键字调用方法的时候,才能对一个非静态方法进行静态形式的调用。
Copy after login


请问这到底是怎么回事?难道说PHP在思想上是不支持这么做的,但实际上却可以这么做?
------解决方案--------------------
对一个非静态方法进行静态形式的调用 是 php 的惯例
只在 php 5.3 才引入 E_STRICT  检查,php 5.4 才强制检查
------解决方案--------------------
和php不同版本的错误检查级别有关系
------解决方案--------------------
那是当然的!
你不是有 ~E_STRICT 吗?
屏蔽了 E_STRICT 级别的错误检查
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template