php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #49071 gmp_intval returns bad value
Submitted: 2009-07-27 10:59 UTC Modified: 2009-07-28 16:17 UTC
From: erha at freemail dot hu Assigned:
Status: Not a bug Package: GNU MP related
PHP Version: 5.2.10 OS: windows
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
49 - 19 = ?
Subscribe to this entry?

 
 [2009-07-27 10:59 UTC] erha at freemail dot hu
Description:
------------
In the following code gmp_intval returns bad results. Replace it with gmp_strval to see the difference:




Reproduce code:
---------------
$val = "19991231235958";
$value = gmp_init($val);
$res = gmp_div_qr($value, "0x100000000");
$b1 = (string) gmp_intval($res[1]);
$b2 = (string) gmp_intval($res[0]);
echo "$b1 $b2";


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-07-28 16:17 UTC] jani@php.net
RTFM, http://php.net/gmp_intval 

"Warning
This function returns a useful result only if the number actually fits 
the PHP integer (i.e., signed long type). If you want just to print the 
GMP number, use gmp_strval()."
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 12:01:28 2024 UTC