- PHP 教程
- PHP 简介
- PHP 安装
- PHP 语法
- PHP 变量
- PHP 5 echo 和 print 语句
- PHP EOF(heredoc) 使用说明
- PHP 5 数据类型
- PHP 5 常量
- PHP 字符串变量
- PHP 运算符
- PHP If...Else 语句
- PHP Switch 语句
- PHP 数组
- PHP 数组排序
- PHP 超级全局变量
- PHP 循环 - While 循环
- PHP 循环 - For 循环
- PHP 函数
- PHP 图像处理
- PHP RESTful
- PHP 魔术变量
- PHP 命名空间(namespace)
- PHP 面向对象
- PHP 表单
- PHP 高级教程
- PHP 7 新特性
- PHP 数据库
- PHP XML
- PHP 与 AJAX
- PHP 参考手册
PHP 7 废弃特性
PHP4 风格的构造函数
在 PHP4 中类中的函数可以与类名同名,这一特性在 PHP7 中被废弃,同时会发出一个 E_DEPRECATED 错误。当方法名与类名相同,且类不在命名空间中,同时PHP5的构造函数(__construct)不存在时,会产生一个 E_DEPRECATED 错误。
实例
实例
<?php
class A {
function A() {
print('Style Constructor');
}
}
?>
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();
?>
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 值。
capture_session_meta SSL 上下文选项
废弃了 "capture_session_meta" SSL 上下文选项。 在流资源上活动的加密相关的元数据可以通过 stream_get_meta_data() 的返回值访问。
上一篇:PHP 7 Session 选项
下一篇:PHP 7 移除的扩展