Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
intl /
calendar /
Delete
Unzip
Name
Size
Permission
Date
Action
.libs
[ DIR ]
drwxr-xr-x
2024-03-12 14:27
calendar_class.cpp
18.77
KB
-rw-rw-r--
2022-10-31 11:36
calendar_class.h
2.63
KB
-rw-rw-r--
2022-10-31 11:36
calendar_class.lo
351
B
-rw-r--r--
2024-03-12 14:27
calendar_class.o
161.57
KB
-rw-r--r--
2024-03-12 14:27
calendar_methods.cpp
35.17
KB
-rw-rw-r--
2022-10-31 11:36
calendar_methods.h
2.87
KB
-rw-rw-r--
2022-10-31 11:36
calendar_methods.lo
357
B
-rw-r--r--
2024-03-12 14:27
calendar_methods.o
333.48
KB
-rw-r--r--
2024-03-12 14:27
gregoriancalendar_methods.cpp
8.21
KB
-rw-rw-r--
2022-10-31 11:36
gregoriancalendar_methods.h
1.29
KB
-rw-rw-r--
2022-10-31 11:36
gregoriancalendar_methods.lo
384
B
-rw-r--r--
2024-03-12 14:27
gregoriancalendar_methods.o
168.81
KB
-rw-r--r--
2024-03-12 14:27
Save
Rename
/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Gustavo Lopes <cataphract@netcabo.pt> | +----------------------------------------------------------------------+ */ #ifndef CALENDAR_METHODS_H #define CALENDAR_METHODS_H #include <php.h> PHP_METHOD(IntlCalendar, __construct); PHP_FUNCTION(intlcal_create_instance); PHP_FUNCTION(intlcal_get_keyword_values_for_locale); PHP_FUNCTION(intlcal_get_now); PHP_FUNCTION(intlcal_get_available_locales); PHP_FUNCTION(intlcal_get); PHP_FUNCTION(intlcal_get_time); PHP_FUNCTION(intlcal_set_time); PHP_FUNCTION(intlcal_add); PHP_FUNCTION(intlcal_set_time_zone); PHP_FUNCTION(intlcal_after); PHP_FUNCTION(intlcal_before); PHP_FUNCTION(intlcal_set); PHP_FUNCTION(intlcal_roll); PHP_FUNCTION(intlcal_clear); PHP_FUNCTION(intlcal_field_difference); PHP_FUNCTION(intlcal_get_actual_maximum); PHP_FUNCTION(intlcal_get_actual_minimum); PHP_FUNCTION(intlcal_get_day_of_week_type); PHP_FUNCTION(intlcal_get_first_day_of_week); PHP_FUNCTION(intlcal_get_greatest_minimum); PHP_FUNCTION(intlcal_get_least_maximum); PHP_FUNCTION(intlcal_get_locale); PHP_FUNCTION(intlcal_get_maximum); PHP_FUNCTION(intlcal_get_minimal_days_in_first_week); PHP_FUNCTION(intlcal_get_minimum); PHP_FUNCTION(intlcal_get_time_zone); PHP_FUNCTION(intlcal_get_type); PHP_FUNCTION(intlcal_get_weekend_transition); PHP_FUNCTION(intlcal_in_daylight_time); PHP_FUNCTION(intlcal_is_equivalent_to); PHP_FUNCTION(intlcal_is_lenient); PHP_FUNCTION(intlcal_is_set); PHP_FUNCTION(intlcal_is_weekend); PHP_FUNCTION(intlcal_set_first_day_of_week); PHP_FUNCTION(intlcal_set_lenient); PHP_FUNCTION(intlcal_set_minimal_days_in_first_week); PHP_FUNCTION(intlcal_equals); PHP_FUNCTION(intlcal_get_repeated_wall_time_option); PHP_FUNCTION(intlcal_get_skipped_wall_time_option); PHP_FUNCTION(intlcal_set_repeated_wall_time_option); PHP_FUNCTION(intlcal_set_skipped_wall_time_option); PHP_FUNCTION(intlcal_from_date_time); PHP_FUNCTION(intlcal_to_date_time); PHP_FUNCTION(intlcal_get_error_code); PHP_FUNCTION(intlcal_get_error_message); #endif /* #ifndef CALENDAR_METHODS_H */