Tagged Questions

0
votes
2answers
48 views

How to ceil, floor and round bcmath numbers?

I need to mimic the exact functionality of the ceil(), floor() and round() functions on bcmath numbers, I've already found a very similar question but unfortunately the answer prov …
4
votes
2answers
325 views

How to round/ceil/floor a bcmath number in PHP?

Is there any library function for this purpose, so I don't do it by hand and risk ending in TDWTF? echo ceil(31497230840470473074370324734723042.6); // Expected result 3149723084 …
1
vote
4answers
131 views

Raising to power in PHP

Well, i need to do some calculations in PHP script. And i have one expression that behaves wrong. echo 10^(-.01); Outputs 10 echo 1 / (10^(.01)); Outputs 0 echo bcpow('10', …
1
vote
2answers
49 views

Calculating roots with bc_math or GMP

I'm having trouble calculating roots of rather large numbers using bc_math, example: - pow(2, 2) // 4, power correct - pow(4, 0.5) // 2, square root correct - bcpow(2, 2) …
5
votes
12answers
438 views

In PHP, how do I generate a big pseudo-random number?

I'm looking for a way to generate a big random number with PHP, something like: mt_rand($lower, $upper); The closer I've seen is gmp_random() however it doesn't allow me to spec …
0
votes
1answer
52 views

Optimizing Comparisons of Arbitrary Length Numbers in PHP

Related to this question, I've a class that wrapps the gmp and bc_math extensions aswell as built-in integer support, but I find it kinda hard to do comparisons on big numbers comp …