Код: Выделить всё
$we_all_float_down_here = (float) 3467.60009765625;
$expected_string = '3467.60009765625';
var_dump($expected_string === (string) $we_all_float_down_here);
echo "Last chars gets stripped:\n"
. (string) $we_all_float_down_here . "\n"
. $expected_string;
Код: Выделить всё
bool(false)
Last chars gets stripped:
3467.6000976562
3467.60009765625
https://onlinephp.io/c/b3af3
Подробнее здесь: https://stackoverflow.com/questions/793 ... its-digits
Мобильная версия