I learned how to use the string-length function
<?php
$text = "this way";
if (strlen($text) > 5) { //characters
echo "something";
}
and I want to use something like it that applies to number variables.
$text = 7;
What function would that be?