+ 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 Respostas
+ 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.