1--TEST-- 2jdtogregorian(): test overflow 3--CREDITS-- 4neweracracker@gmail.com 5--SKIPIF-- 6<?php 7if (!extension_loaded('calendar')) die('skip ext/calendar required'); 8if (PHP_INT_SIZE != 4) die('skip this test is for 32bit platforms only'); 9?> 10--FILE-- 11<?php 12for ($i=536838860; $i<536838870; $i++) { 13 echo $i, ':', jdtogregorian($i), PHP_EOL; 14} 15echo 'DONE', PHP_EOL; 16?> 17--EXPECT-- 18536838860:10/11/1465102 19536838861:10/12/1465102 20536838862:10/13/1465102 21536838863:10/14/1465102 22536838864:10/15/1465102 23536838865:10/16/1465102 24536838866:10/17/1465102 25536838867:0/0/0 26536838868:0/0/0 27536838869:0/0/0 28DONE 29