^((?!\().*)(\?[^php]).*(\:)([\s\v]+)(?!\().*[^\/](\?)([\s\v\h]*).*(\:[^=])
Regex to find deprecated nested ternaries
嵌套的三元操作中,必须明确使用显式括号来决定操作的顺序。以前,如果不使用括号,在大多数情况下,左关联性不会导致预期的行为。
<?php
1 ? 2 : 3 ? 4 : 5; // deprecated
(1 ? 2 : 3) ? 4 : 5; // ok
1 ? 2 : (3 ? 4 : 5); // ok
?>
使用大括号访问数组及字符串索引的方式已被废弃。请使用
$var[$idx]
的语法来替代
$var{$idx}
。
$this
when $this
is used
Unbinding $this
of a non-static closure
that uses $this
is deprecated.
parent
关键词在没父类的类中使用
在没有父类的类中使用 parent
关键词已被废弃,并且在将来的 PHP 版本中将会抛出一个编译错误。目前只在运行时访问父类时才会产生错误。
配置文件中的 allow_url_include 选项被废弃。如果启用了该选项,将会产生一个弃用通知。
在下面这些基础转换函数中,base_convert(), bindec(), octdec() 和 hexdec() 如果传入了非法字符,将会抛出一个弃用通知。函数会忽略掉无效字符后正常返回结果。前导空格和尾部空格,以及类型为 0x (取决于基数) 被允许传入。
在一个对象中使用 array_key_exists() 已被废弃。请使用 isset() 或 property_exists() 来替代。
魔术引号函数 get_magic_quotes_gpc() 和 get_magic_quotes_runtime()
已被废弃。它们将永远返回 false
。
convert_cyr_string() 函数已被废弃。可以用 mb_convert_string(), iconv() 或 UConverter 替代。
money_format() 函数已被废弃。 可以用更国际化的 NumberFormatter 功能来替代。
ezmlm_hash() 函数已被废弃。
restore_include_path() 函数已被废弃。可以用 ini_restore('include_path')
替代。
implode() 允许反转参数顺序的特性已被废弃,请使用 implode($glue, $parts)
来替代 implode($parts, $glue)
。
导入类型库的大小写不敏感的常量注册已被废弃。
FILTER_SANITIZE_MAGIC_QUOTES
已被废弃,使用 FILTER_SANITIZE_ADD_SLASHES
来替代。
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.
ldap_control_paged_result_response() 和 ldap_control_paged_result() 函数已被废弃。控制页面操作可以使用 ldap_search() 替代。
调用 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);
?>
常量 AI_IDN_ALLOW_UNASSIGNED
和
AI_IDN_USE_STD3_ASCII_RULES
在
socket_addrinfo_lookup() 中不再可用,因为该常量在 glibc 中已被废弃。
^((?!\().*)(\?[^php]).*(\:)([\s\v]+)(?!\().*[^\/](\?)([\s\v\h]*).*(\:[^=])
Regex to find deprecated nested ternaries
(\?[^php]).*(\:).*(\?).*(\:[^=])
Above regex can help others to find the nested ternary operator