????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.222.185.243 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/calendar/ |
Upload File : |
#ifndef PHP_CALENDAR_H #define PHP_CALENDAR_H extern zend_module_entry calendar_module_entry; #define calendar_module_ptr &calendar_module_entry /* Functions */ PHP_MINIT_FUNCTION(calendar); PHP_MINFO_FUNCTION(calendar); PHP_FUNCTION(jdtogregorian); PHP_FUNCTION(gregoriantojd); PHP_FUNCTION(jdtojulian); PHP_FUNCTION(juliantojd); PHP_FUNCTION(jdtojewish); PHP_FUNCTION(jewishtojd); PHP_FUNCTION(jdtofrench); PHP_FUNCTION(frenchtojd); PHP_FUNCTION(jddayofweek); PHP_FUNCTION(jdmonthname); PHP_FUNCTION(easter_days); PHP_FUNCTION(easter_date); PHP_FUNCTION(unixtojd); PHP_FUNCTION(jdtounix); PHP_FUNCTION(cal_from_jd); PHP_FUNCTION(cal_to_jd); PHP_FUNCTION(cal_days_in_month); PHP_FUNCTION(cal_info); #define phpext_calendar_ptr calendar_module_ptr /* * Specifying the easter calculation method * * DEFAULT is Anglican, ie. use Julian calendar before 1753 * and Gregorian after that. With ROMAN, the cutoff year is 1582. * ALWAYS_GREGORIAN and ALWAYS_JULIAN force the calendar * regardless of date. * */ #define CAL_EASTER_DEFAULT 0 #define CAL_EASTER_ROMAN 1 #define CAL_EASTER_ALWAYS_GREGORIAN 2 #define CAL_EASTER_ALWAYS_JULIAN 3 #endif