Home Function count() parameter must be an array or an object that implements countable

count() parameter must be an array or an object that implements countable

48
0

Puoi trasmettere una variabile all’array. Ma fai attenzione: l’uso di array($variabile) ti darà un risultato errato, restituendo un array con un singolo valore di $variabile al suo interno, restituendo sempre 1 come conteggio.

È invece necessario utilizzare l’operatore di casting del tipo (array):

count((array)$variable));
Previous articleChe cos’è una callback
Next articleCome contarare le lettere prima di una determinata parola

LEAVE A REPLY

Please enter your comment!
Please enter your name here