php-src/ext/calendar/tests/juliantojd.phpt

20 lines
345 B
Plaintext
Raw Normal View History

2006-10-09 16:02:34 +00:00
--TEST--
juliantojd()
--SKIPIF--
<?php include 'skipif.inc'; ?>
--FILE--
<?php
echo juliantojd( 0, 0, 0). "\n";
echo juliantojd( 1, 1, 1582). "\n";
echo juliantojd(10, 5, 1582). "\n";
echo juliantojd( 1, 1, 1970). "\n";
echo juliantojd( 1, 1, 2999). "\n";
echo juliantojd( 1, 1, -4713). "\n";
2006-10-09 16:02:34 +00:00
?>
--EXPECT--
0
2298884
2299161
2440601
2816443
0