xref: /PHP-8.1/ext/calendar/tests/juliantojd.phpt (revision 56f90492)
1--TEST--
2juliantojd()
3--EXTENSIONS--
4calendar
5--FILE--
6<?php
7echo juliantojd( 0, 0,    0). "\n";
8echo juliantojd( 1, 1, 1582). "\n";
9echo juliantojd(10, 5, 1582). "\n";
10echo juliantojd( 1, 1, 1970). "\n";
11echo juliantojd( 1, 1, 2999). "\n";
12echo juliantojd( 1, 1, -4713). "\n";
13?>
14--EXPECT--
150
162298884
172299161
182440601
192816443
200
21