1、丢弃
https://www.php.net/manual/zh/migration80.deprecated.php
2、函数默认值
function abc($a=1, $b, $c)
function abc($a=1, $b=2, $c=3)
3、count必须是Countable|array 类型,使用is_countable判断
1、丢弃
https://www.php.net/manual/zh/migration80.deprecated.php
2、函数默认值
function abc($a=1, $b, $c)
function abc($a=1, $b=2, $c=3)
3、count必须是Countable|array 类型,使用is_countable判断