[ad_1]
You can use cast the value (type juggling).
Change,
$ret[] = $row['count'];
To,
$ret[] = (int) $row['count'];
0
[ad_2]
solved array conversion removing index
[ad_1]
You can use cast the value (type juggling).
Change,
$ret[] = $row['count'];
To,
$ret[] = (int) $row['count'];
0
[ad_2]
solved array conversion removing index