如何处理PHP7.2中的Count()警告?

时间:2019-01-19 10:30:26

标签: php-7.2

如何在PHP7.2中解决此警告?

count(): Parameter must be an array or an object that implements Countable

只需在传递给count()之前检查变量?

1 个答案:

答案 0 :(得分:0)

是的,您可以例如通过

进行检查
if (is_array($variable) && count($variable) > 0) { ... }