php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #73641 ceil function not work fine in special float number
Submitted: 2016-12-02 09:29 UTC Modified: 2016-12-02 11:12 UTC
From: ufomoujie at gmail dot com Assigned:
Status: Not a bug Package: Unknown/Other Function
PHP Version: 5.6Git-2016-12-02 (Git) OS: windows10
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: ufomoujie at gmail dot com
New email:
PHP Version: OS:

 

 [2016-12-02 09:29 UTC] ufomoujie at gmail dot com
Description:
------------
PHP 5.6.24 (cli) (built: Jul 20 2016 21:18:30)
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies

script:

$value = 16.1 * 1000;
$iValue = ceil($value);
var_dump($value, $iValue);

result :

float(16100)
float(16101)

expect:

float(16100)
float(16100)


Test script:
---------------
$value = 16.1 * 1000;
$iValue = ceil($value);
var_dump($value, $iValue);

Expected result:
----------------
float(16100)
float(16100)

Actual result:
--------------
float(16100)
float(16101)

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2016-12-02 11:12 UTC] requinix@php.net
-Status: Open +Status: Not a bug
 [2016-12-02 11:12 UTC] requinix@php.net
Floating point values have a limited precision. Hence a value might 
not have the same string representation after any processing. That also
includes writing a floating point value in your script and directly 
printing it without any mathematical operations.

If you would like to know more about "floats" and what IEEE
754 is, read this:
http://www.floating-point-gui.de/

Thank you for your interest in PHP.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu Jul 03 12:01:33 2025 UTC