/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/simplexml/tests/bug54973.phpt
23 строки
456 B
Gina Peter Banyard
tree: drop non canonical casts and ZPP tests
06 авг 2025, 15:20
Не верифицирован
06 авг 2025, 15:20
1e0c8ba
Код
Авторство
О чём код?
--TEST-- Bug #54973: SimpleXML casts integers wrong --EXTENSIONS-- simplexml --FILE-- <?php $xml = simplexml_load_string("<xml><number>9223372036854775808</number></xml>"); var_dump($xml->number); $int = $xml->number / 1024 / 1024 / 1024; var_dump($int); $float = (float) $xml->number / 1024 / 1024 / 1024; var_dump($float); ?> --EXPECT-- object(SimpleXMLElement)#2 (1) { [0]=> string(19) "9223372036854775808" } float(8589934592) float(8589934592)