How to convet int to float with only the first digit as a whole number in PHP

1 Answer

0 votes
$n = 5289;
$first_digit = $n;
  
while($first_digit >= 10) {
       $first_digit = $first_digit / 10;
}
  
echo $first_digit;



  
/*
run:

5.289

*/

 



answered Aug 31, 2019 by avibootz

Related questions

3 answers 264 views
1 answer 171 views
2 answers 271 views
1 answer 58 views
...