Hi, I am getting a fatal error of PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in...
on the following count line when upgrading from PHP 7.4 to PHP 8:
Anyone know how to resolve this?
on the following count line when upgrading from PHP 7.4 to PHP 8:
PHP:
function orderByDate($items) {
//$tempDate = strtotime($item);
$referenceArray = array();
for ($i = 0; $i < count($items); $i++) {
$referenceArray[] = strtotime($items[$i]['pubDate']);
}
array_multisort($referenceArray, SORT_DESC, $items);
return $items;
}
Anyone know how to resolve this?
Last edited: