2017-05-26 76 views

回答

2

count()期望一个或两个参数,但你给它三个。

可以使用,

array_sum(array_map('count', [$a, $b, $c])); 
相关问题