GNU Multiple Precision

add a noteadd a note

User Contributed Notes 1 note

up
6
Anonymous
10 years ago
Be careful with GMP - it considers leading zeros in a number string as meaning the number is in octal, whereas 'bc' doesn't:

  gmp_strval("000100", 10) => 64

  bcmul("000100", "1") => 100

备份地址:http://www.lvesu.com/blog/php/book.gmp.php