Php/docs/migration74.deprecated

来自菜鸟教程
跳转至:导航、​搜索

PHP 7.4.x 废弃的功能

PHP 核心中废弃的功能

没有显式括号的嵌套三元运算符

嵌套的三元操作中,必须明确使用显式括号来决定操作的顺序。以前,如果不使用括号,在大多数情况下,左关联性不会导致预期的行为。

<?php1 ? 2 : 3 ? 4 : 5;   // deprecated(1 ? 2 : 3) ? 4 : 5; // ok1 ? 2 : (3 ? 4 : 5); // ok?>

大括号访问数组和字符串索引

使用大括号访问数组及字符串索引的方式已被废弃。请使用 $var[$idx] 的语法来替代 $var{$idx}


(real) 类型和 is_real() 函数

(real) 类型已被废弃,请使用 (float) 来替代。

同时被废弃的还有 is_real() 函数,请使用 is_float() 来替代。


Unbinding $this when $this is used

Unbinding $this of a non-static closure that uses $this is deprecated.


parent 关键词在没父类的类中使用

在没有父类的类中使用 parent 关键词已被废弃,并且在将来的 PHP 版本中将会抛出一个编译错误。目前只在运行时访问父类时才会产生错误。


allow_url_include INI 选项

配置文件中的 allow_url_include 选项被废弃。如果启用了该选项,将会产生一个弃用通知。


基础转换函数中的无效字符处理

在下面这些基础转换函数中,base_convert(), bindec(), octdec()hexdec() 如果传入了非法字符,将会抛出一个弃用通知。函数会忽略掉无效字符后正常返回结果。前导空格和尾部空格,以及类型为 0x (取决于基数) 被允许传入。


在对象中使用 array_key_exists()

在一个对象中使用 array_key_exists() 已被废弃。请使用 isset()property_exists() 来替代。


魔术引号函数

魔术引号函数 get_magic_quotes_gpc()get_magic_quotes_runtime() 已被废弃。它们将永远返回 false


hebrevc() 函数

hebrevc() 函数已被废弃。 可以用 nl2br(hebrev($str)) 来替代,更好的方法是启用 Unicode RTL 来支持。


convert_cyr_string() 函数

convert_cyr_string() 函数已被废弃。可以用 mb_convert_string()iconv()UConverter 替代。


money_format() 函数

money_format() 函数已被废弃。 可以用更国际化的 NumberFormatter 功能来替代。


ezmlm_hash() 函数

ezmlm_hash() 函数已被废弃。


restore_include_path() 函数

restore_include_path() 函数已被废弃。可以用 ini_restore('include_path') 替代。


Implode 函数的参数顺序

implode() 允许反转参数顺序的特性已被废弃,请使用 implode($glue, $parts) 来替代 implode($parts, $glue)


COM

导入类型库的大小写不敏感的常量注册已被废弃。


Filter

FILTER_SANITIZE_MAGIC_QUOTES 已被废弃,使用 FILTER_SANITIZE_ADD_SLASHES 来替代。


Multibyte String

Passing a non-string pattern to mb_ereg_replace() is deprecated. Currently, non-string patterns are interpreted as ASCII codepoints. In PHP 8, the pattern will be interpreted as a string instead.

Passing the encoding as 3rd parameter to mb_strrpos() is deprecated. Instead pass a 0 offset, and encoding as 4th parameter.


Lightweight Directory Access Protocol

ldap_control_paged_result_response()ldap_control_paged_result() 函数已被废弃。控制页面操作可以使用 ldap_search() 替代。


Reflection

调用 ReflectionType::__toString() 现在将会抛出一个弃用通知。 该方法从 PHP 7.1 开始,在 ReflectionNamedType::getName() 的文档中已经被声明废弃,但是由于技术原因,并没有抛出弃用通知。

The export() methods on all Reflection classes are deprecated. Construct a Reflection object and convert it to string instead:

<?php// ReflectionClass::export(Foo::class, false) is:echo new ReflectionClass(Foo::class), "\n";// $str = ReflectionClass::export(Foo::class, true) is:$str = (string) new ReflectionClass(Foo::class);?>

Socket

常量 AI_IDN_ALLOW_UNASSIGNEDAI_IDN_USE_STD3_ASCII_RULESsocket_addrinfo_lookup() 中不再可用,因为该常量在 glibc 中已被废弃。