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 249 views
1 answer 159 views
2 answers 261 views
1 answer 48 views
...