I would like to ask how I can get the length of digits in an Integer. For example:
$num = 245354; $numlength = mb_strlen($num);
$numl
echo strlen((string) abs($num)); // using **abs** it'll work with negative integers as well