+ 1
Big int number
I have a php script that script contain large int number. I print that int but i got scientific notation number i don't need that i need to print in int format $x=1555535766567575467344; echo $x;
3 Answers
+ 2
Use number_format() or sprintf() to output your number correctly.
https://www.php.net/number_format
https://www.php.net/sprintf
if this doesn't help show your code
0
It's work thanks.