Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
934 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 ...
4
votes
12answers
1k 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 specify the lower and ...
3
votes
3answers
567 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 provided isn't good ...
2
votes
1answer
87 views

Why subtraction doesn't work properly using bcmath?

Let's say I have $foo = bcsub(bcdiv(1, 3, 20), 0.00001, 20); it returns me 0.33333333333333333333 If I have $foo = bcsub(bcdiv(1, 3, 20), 0.0001, 20); it returns me 0.33323333333333333332 If ...
2
votes
3answers
168 views

What is the difference between bcpow and pow?

Can someone explain to me if I should use bcpow() instead of pow() and why? I understand that not all installations of php have bcmath enabled. So if I write an open source project, and want to have ...
2
votes
2answers
389 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) // 4, power ...
1
vote
1answer
28 views

Error using BCMath - Call to undefined method PEAR_Error::int2bin()

I am having this error while using BCMath - Fatal error: Call to undefined method PEAR_Error::int2bin() in login.php on line 23 I am trying to use Crypt_RSA and BCMath together. Here is my ...
1
vote
1answer
112 views

BCmath php 64bit

i'm using BCmath to do math with 64 bit unsigned integers, i want to make a bcmath-object to a normal int (high, low part) how can i achieve that ? Thank you for your help
1
vote
2answers
118 views

Two files, exactly the same code, different output?

This is the weirdest thing that has ever happened to me since I am a (PHP) programmer... I have two files, with the following code (proj. euler stuff) that return different outputs. <?php ...
1
vote
2answers
592 views

bash bcmath functions

I have two functions for GNU bc in a Bash script. BC_CEIL="define ceil(x) { if (x>0) { if (x%1>0) return x+(1-(x%1)) else return x } else return -1*floor(-1*x) }\n" BC_FLOOR="define floor(x) { ...
1
vote
1answer
285 views

How much precision for a bcmath PHP library?

I'm writing a PHP library that has a Number class that uses the bcmath extension for arbitrary precision. I have two questions: How much slower is bcmath compared to using the built-in int and ...
1
vote
3answers
296 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', '-0.01') . ...
0
votes
0answers
75 views

Install/enable php bcmath support on hp-ux web server suite

How to enable php bcmath, gd, mbstring like packages on hp-ux web server suite. I dont want to install a new fresh copy of php as it already there with the web server suite. I am using web server ...
0
votes
1answer
96 views

General Question About Arbitrary-Precision Math in PHP

I'm currently trying to figure out how to work with arbitrary-precision numbers in PHP. So I guess my first question would be what exactly is arbitrary-precision math. I tried Googling for a good ...
0
votes
3answers
80 views

confused by PHP's bcmul() scale

Why is this outputting 87.5 and not 87.50? <?php $quantity = 25; switch ($quantity) { case ($quantity <= 50): $price = 3.50; break; case ($quantity <= 100): ...
0
votes
4answers
111 views

bcmath seams to give the wrong answer to my calculation

I am not sure what i am doing wrong but this calculation bcscale(20); echo bcmul(bcdiv('422218', '2388865'), '473'); echoes "83.59999999999999999670" but every other calculator gives me 83.6. is ...
0
votes
1answer
789 views

how to install bcmath mdoule?

how to install bcmath module on a server? I tried yum update php-bcmath but it said it found nothing. please advise.