Searched refs:jd (Results 1 – 4 of 4) sorted by relevance
/PHP-7.1/ext/calendar/tests/ |
H A D | jddayofweek.phpt | 7 foreach (array(2440588, 2452162, 2453926, -1000) as $jd) { 8 echo "### JD $jd ###\n"; 12 echo jddayofweek($jd + $offset, $mode). "\n";
|
H A D | jdtojewish_hebrew.phpt | 13 $jd = jewishtojd($month, 1, $year); 14 $hebrew = jdtojewish($jd, true);
|
H A D | jdmonthname.phpt | 7 foreach (array(2440588, 2452162, 2453926) as $jd) { 8 echo "### JD $jd ###\n"; 12 echo jdmonthname($jd + $offset * 30, $mode). "\n";
|
/PHP-7.1/ext/calendar/ |
H A D | calendar.c | 67 ZEND_ARG_INFO(0, jd) 184 typedef void (*cal_from_jd_func_t) (zend_long jd, int *year, int *month, int *day); 396 zend_long jd, cal; in PHP_FUNCTION() local 401 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ll", &jd, &cal) == FAILURE) { in PHP_FUNCTION() 413 calendar->from_jd(jd, &year, &month, &day); in PHP_FUNCTION() 424 dow = DayOfWeek(jd); in PHP_FUNCTION()
|
Completed in 19 milliseconds