I have been working with the PHP code that the expected result will become :
1
101
10001
1000001
100000001
10000000001
1000000000001
100000000000001
10000000000000001
1000000000000000001
finally the output was :
1
101
10001
1000001
100000001
10000000001
1000000000001 // (1 billion) to (100 billion - 1) still showing the actual number, and then
1.0E+14
1.0E+16
1.0E+18
I've found some solutions there! they said by using sprintf or trying format_number. I tried both.
using sprintf and the result :
$format_x = sprintf("%.0f ",$x);
echo $format_x.$br;
1
101
10001
1000001
100000001
10000000001
1000000000001
100000000000001
10000000000000000
1000000000000000000
using format_number and the result :
echo number_format($x, 0).$br;
1
101
10,001
1,000,001
100,000,001
10,000,000,001
1,000,000,000,001
100,000,000,000,001
10,000,000,000,000,000
1,000,000,000,000,000,000
but it still doesn't show the actual large numbers. well, the two ways was looks good but it doesn't fit with what i want. does anyone can resolve this?
Scientific notation is a way of writing very large or very small numbers. A number is written in scientific notation when a number between 1 and 10 is multiplied by a power of 10. For example, 650,000,000 can be written in scientific notation as 6.5 ✕ 10^8.
Steps for Converting Scientific Notation to Standard FormStep 1: Identify the exponent in the power of 10. Step 2: Move the decimal that many places to the right if the exponent is positive and to the left if the exponent is negative. Step 3: Fill in any empty spaces with zeros.
Converting Numbers from Scientific Notation. Decide if you will be moving the decimal point to the left or to the right. If the exponent on the "x 10" part of the number is positive, then you will be moving the decimal places to the right; if the exponent is negative, you will be moving the decimal places to the left.
Scientific notation is simply a way of writing numbers. It is especially useful in expressing very large or very small numbers because it is shorter and more efficient and it shows magnitude very easily. Every real number can be written as a product of two parts: a decimal part times an integer power of ten.
You can use standard bc_math library to handle operations with large numbers. Please, note, that in this case your numbers will be represented as strings, but library provides specific methods for operations under such strings.
You should definitely use BCMath.
If you want to know why you can't do it with regular numbers, it's because they are floating point numbers and they are using a fixed amount of space in the memory(64 bits to be exact) so their precision is physically limited. Otherwise a string is not limited because that would be stupid if the length of a text was limited. That's why BcMath and other libraries uses string for arithmetical computation.
If you want to learn more about the format used by PHP(and almost every language) to store big numbers you can go there : http://en.wikipedia.org/wiki/Double-precision_floating-point_format
Have a good day
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With