Home  >  Article  >  Backend Development  >  Detailed explanation of float to int accuracy on PHP official website

Detailed explanation of float to int accuracy on PHP official website

小云云
小云云Original
2018-03-28 11:46:002543browse

This article mainly shares with you the detailed explanation of float to int conversion accuracy on the PHP official website. I hope it can help you.

<?php
echo (int) ( (0.1+0.7) * 10 ); // 显示 7!
?>

Due to the precision problem of floating point numbers, 0.1+0.7=0.799999..., after ×10, we get 7.9..., the mantissa is removed when converting float to int, so the result is 7.


The above is the detailed content of Detailed explanation of float to int accuracy on PHP official website. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn