common_date.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | http://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Authors: Gustavo Lopes <cataphract@php.net> |
  14. +----------------------------------------------------------------------+
  15. */
  16. #ifndef COMMON_DATE_H
  17. #define COMMON_DATE_H
  18. #include <unicode/umachine.h>
  19. U_CDECL_BEGIN
  20. #include <php.h>
  21. #include "../intl_error.h"
  22. U_CDECL_END
  23. #ifdef __cplusplus
  24. #include <unicode/timezone.h>
  25. U_CFUNC TimeZone *timezone_convert_datetimezone(int type, void *object, int is_datetime, intl_error *outside_error, const char *func TSRMLS_DC);
  26. U_CFUNC int intl_datetime_decompose(zval *z, double *millis, TimeZone **tz,
  27. intl_error *err, const char *func TSRMLS_DC);
  28. #endif
  29. U_CFUNC double intl_zval_to_millis(zval *z, intl_error *err, const char *func TSRMLS_DC);
  30. #endif /* COMMON_DATE_H */