Rumah > Artikel > pembangunan bahagian belakang > PHP7弃用的功能
PHP4式构造函数,它与类的名称相同,因为它们是在所定义类的方法,现在已过时,并且将在未来被移除。如果PHP4的构造仅仅是一个类中定义构造函数,PHP7将发出E_DEPRECATED。类实现构造函数 __construct()方法不受影响。
<?php class A { function A() { print('Style Constructor'); } } ?>
这将在浏览器产生以下输出 -
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; A has a deprecated constructor in...
<?php class A { function b() { print('Non-static call'); } } A::b(); ?>
这将在浏览器产生以下输出 -
Deprecated: Non-static method A::b() should not be called statically in... Non-static call
password_hash()函数的salt选项已被弃用,使开发人员不会产生他们自己的(通常是不安全的)salt。函数本身生成一个加密的安全salt,在开发者没有提供salt值时 - 因此,定制 salt 生成不再需要了。