cal_unix.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Shane Caraveo <shane@caraveo.com> |
  16. | Colin Viebrock <colin@easydns.com> |
  17. | Hartmut Holzgraefe <hholzgra@php.net> |
  18. +----------------------------------------------------------------------+
  19. */
  20. /* $Id: */
  21. #include "php.h"
  22. #include "php_calendar.h"
  23. #include "sdncal.h"
  24. #include <time.h>
  25. /* {{{ proto int unixtojd([int timestamp])
  26. Convert UNIX timestamp to Julian Day */
  27. PHP_FUNCTION(unixtojd)
  28. {
  29. time_t ts = 0;
  30. struct tm *ta, tmbuf;
  31. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &ts) == FAILURE) {
  32. return;
  33. }
  34. if (!ts) {
  35. ts = time(NULL);
  36. } else if (ts < 0) {
  37. RETURN_FALSE;
  38. }
  39. if (!(ta = php_localtime_r(&ts, &tmbuf))) {
  40. RETURN_FALSE;
  41. }
  42. RETURN_LONG(GregorianToSdn(ta->tm_year+1900, ta->tm_mon+1, ta->tm_mday));
  43. }
  44. /* }}} */
  45. /* {{{ proto int jdtounix(int jday)
  46. Convert Julian Day to UNIX timestamp */
  47. PHP_FUNCTION(jdtounix)
  48. {
  49. long uday;
  50. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &uday) == FAILURE) {
  51. return;
  52. }
  53. uday -= 2440588 /* J.D. of 1.1.1970 */;
  54. if (uday < 0 || uday > 24755) { /* before beginning of unix epoch or behind end of unix epoch */
  55. RETURN_FALSE;
  56. }
  57. RETURN_LONG(uday * 24 * 3600);
  58. }
  59. /* }}} */
  60. /*
  61. * Local variables:
  62. * tab-width: 4
  63. * c-basic-offset: 4
  64. * End:
  65. * vim600: sw=4 ts=4 fdm=marker
  66. * vim<600: sw=4 ts=4
  67. */