403 lines
11 KiB
PHP
403 lines
11 KiB
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
/** @not-serializable */
|
|
class IntlCalendar
|
|
{
|
|
/** @cvalue UCAL_ERA */
|
|
public const int FIELD_ERA = UNKNOWN;
|
|
/** @cvalue UCAL_YEAR */
|
|
public const int FIELD_YEAR = UNKNOWN;
|
|
/** @cvalue UCAL_MONTH */
|
|
public const int FIELD_MONTH = UNKNOWN;
|
|
/** @cvalue UCAL_WEEK_OF_YEAR */
|
|
public const int FIELD_WEEK_OF_YEAR = UNKNOWN;
|
|
/** @cvalue UCAL_WEEK_OF_MONTH */
|
|
public const int FIELD_WEEK_OF_MONTH = UNKNOWN;
|
|
/** @cvalue UCAL_DATE */
|
|
public const int FIELD_DATE = UNKNOWN;
|
|
/** @cvalue UCAL_DAY_OF_YEAR */
|
|
public const int FIELD_DAY_OF_YEAR = UNKNOWN;
|
|
/** @cvalue UCAL_DAY_OF_WEEK */
|
|
public const int FIELD_DAY_OF_WEEK = UNKNOWN;
|
|
/** @cvalue UCAL_DAY_OF_WEEK_IN_MONTH */
|
|
public const int FIELD_DAY_OF_WEEK_IN_MONTH = UNKNOWN;
|
|
/** @cvalue UCAL_AM_PM */
|
|
public const int FIELD_AM_PM = UNKNOWN;
|
|
/** @cvalue UCAL_HOUR */
|
|
public const int FIELD_HOUR = UNKNOWN;
|
|
/** @cvalue UCAL_HOUR_OF_DAY */
|
|
public const int FIELD_HOUR_OF_DAY = UNKNOWN;
|
|
/** @cvalue UCAL_MINUTE */
|
|
public const int FIELD_MINUTE = UNKNOWN;
|
|
/** @cvalue UCAL_SECOND */
|
|
public const int FIELD_SECOND = UNKNOWN;
|
|
/** @cvalue UCAL_MILLISECOND */
|
|
public const int FIELD_MILLISECOND = UNKNOWN;
|
|
/** @cvalue UCAL_ZONE_OFFSET */
|
|
public const int FIELD_ZONE_OFFSET = UNKNOWN;
|
|
/** @cvalue UCAL_DST_OFFSET */
|
|
public const int FIELD_DST_OFFSET = UNKNOWN;
|
|
/** @cvalue UCAL_YEAR_WOY */
|
|
public const int FIELD_YEAR_WOY = UNKNOWN;
|
|
/** @cvalue UCAL_DOW_LOCAL */
|
|
public const int FIELD_DOW_LOCAL = UNKNOWN;
|
|
/** @cvalue UCAL_EXTENDED_YEAR */
|
|
public const int FIELD_EXTENDED_YEAR = UNKNOWN;
|
|
/** @cvalue UCAL_JULIAN_DAY */
|
|
public const int FIELD_JULIAN_DAY = UNKNOWN;
|
|
/** @cvalue UCAL_MILLISECONDS_IN_DAY */
|
|
public const int FIELD_MILLISECONDS_IN_DAY = UNKNOWN;
|
|
/** @cvalue UCAL_IS_LEAP_MONTH */
|
|
public const int FIELD_IS_LEAP_MONTH = UNKNOWN;
|
|
/** @cvalue UCAL_FIELD_COUNT */
|
|
public const int FIELD_FIELD_COUNT = UNKNOWN;
|
|
/** @cvalue UCAL_DAY_OF_MONTH */
|
|
public const int FIELD_DAY_OF_MONTH = UNKNOWN;
|
|
|
|
/** @cvalue UCAL_SUNDAY */
|
|
public const int DOW_SUNDAY = UNKNOWN;
|
|
/** @cvalue UCAL_MONDAY */
|
|
public const int DOW_MONDAY = UNKNOWN;
|
|
/** @cvalue UCAL_TUESDAY */
|
|
public const int DOW_TUESDAY = UNKNOWN;
|
|
/** @cvalue UCAL_WEDNESDAY */
|
|
public const int DOW_WEDNESDAY = UNKNOWN;
|
|
/** @cvalue UCAL_THURSDAY */
|
|
public const int DOW_THURSDAY = UNKNOWN;
|
|
/** @cvalue UCAL_FRIDAY */
|
|
public const int DOW_FRIDAY = UNKNOWN;
|
|
/** @cvalue UCAL_SATURDAY */
|
|
public const int DOW_SATURDAY = UNKNOWN;
|
|
|
|
/** @cvalue UCAL_WEEKDAY */
|
|
public const int DOW_TYPE_WEEKDAY = UNKNOWN;
|
|
/** @cvalue UCAL_WEEKEND */
|
|
public const int DOW_TYPE_WEEKEND = UNKNOWN;
|
|
/** @cvalue UCAL_WEEKEND_ONSET */
|
|
public const int DOW_TYPE_WEEKEND_OFFSET = UNKNOWN;
|
|
/** @cvalue UCAL_WEEKEND_CEASE */
|
|
public const int DOW_TYPE_WEEKEND_CEASE = UNKNOWN;
|
|
|
|
/** @cvalue UCAL_WALLTIME_FIRST */
|
|
public const int WALLTIME_FIRST = UNKNOWN;
|
|
/** @cvalue UCAL_WALLTIME_LAST */
|
|
public const int WALLTIME_LAST = UNKNOWN;
|
|
/** @cvalue UCAL_WALLTIME_NEXT_VALID */
|
|
public const int WALLTIME_NEXT_VALID = UNKNOWN;
|
|
|
|
private function __construct() {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_create_instance
|
|
*/
|
|
public static function createInstance(IntlTimeZone|DateTimeZone|string|null $timezone = null, ?string $locale = null): ?IntlCalendar {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_equals
|
|
*/
|
|
public function equals(IntlCalendar $other): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_field_difference
|
|
*/
|
|
public function fieldDifference(float $timestamp, int $field): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_add
|
|
*/
|
|
public function add(int $field, int $value): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_after
|
|
*/
|
|
public function after(IntlCalendar $other): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_before
|
|
*/
|
|
public function before(IntlCalendar $other): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_clear
|
|
*/
|
|
public function clear(?int $field = null): true {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_from_date_time
|
|
*/
|
|
public static function fromDateTime(DateTime|string $datetime, ?string $locale = null): ?IntlCalendar {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get
|
|
*/
|
|
public function get(int $field): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_actual_maximum
|
|
*/
|
|
public function getActualMaximum(int $field): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_actual_minimum
|
|
*/
|
|
public function getActualMinimum(int $field): int|false {}
|
|
|
|
/**
|
|
* @return array<int, string>
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_available_locales
|
|
*/
|
|
public static function getAvailableLocales(): array {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_day_of_week_type
|
|
*/
|
|
public function getDayOfWeekType(int $dayOfWeek): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_error_code
|
|
*/
|
|
public function getErrorCode(): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_error_message
|
|
*/
|
|
public function getErrorMessage(): string|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_first_day_of_week
|
|
*/
|
|
public function getFirstDayOfWeek(): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_greatest_minimum
|
|
*/
|
|
public function getGreatestMinimum(int $field): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_keyword_values_for_locale
|
|
*/
|
|
public static function getKeywordValuesForLocale(string $keyword, string $locale, bool $onlyCommon): IntlIterator|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_least_maximum
|
|
*/
|
|
public function getLeastMaximum(int $field): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_locale
|
|
*/
|
|
public function getLocale(int $type): string|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_maximum
|
|
*/
|
|
public function getMaximum(int $field): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_minimal_days_in_first_week
|
|
*/
|
|
public function getMinimalDaysInFirstWeek(): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_set_minimal_days_in_first_week
|
|
*/
|
|
public function setMinimalDaysInFirstWeek(int $days): true {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_minimum
|
|
*/
|
|
public function getMinimum(int $field): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_now
|
|
*/
|
|
public static function getNow(): float {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_repeated_wall_time_option
|
|
*/
|
|
public function getRepeatedWallTimeOption(): int {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_skipped_wall_time_option
|
|
*/
|
|
public function getSkippedWallTimeOption(): int {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_time
|
|
*/
|
|
public function getTime(): float|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_time_zone
|
|
*/
|
|
public function getTimeZone(): IntlTimeZone|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_type
|
|
*/
|
|
public function getType(): string {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_get_weekend_transition
|
|
*/
|
|
public function getWeekendTransition(int $dayOfWeek): int|false {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_in_daylight_time
|
|
*/
|
|
public function inDaylightTime(): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_is_equivalent_to
|
|
*/
|
|
public function isEquivalentTo(IntlCalendar $other): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_is_lenient
|
|
*/
|
|
public function isLenient(): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_is_weekend
|
|
*/
|
|
public function isWeekend(?float $timestamp = null): bool {}
|
|
|
|
/**
|
|
* @param int|bool $value
|
|
* @alias intlcal_roll
|
|
* @tentative-return-type
|
|
*/
|
|
public function roll(int $field, $value): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_is_set
|
|
*/
|
|
public function isSet(int $field): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @implementation-alias intlcal_set
|
|
*/
|
|
public function set(int $year, int $month, int $dayOfMonth = UNKNOWN, int $hour = UNKNOWN, int $minute = UNKNOWN, int $second = UNKNOWN): true {}
|
|
|
|
public function setDate(int $year, int $month, int $dayOfMonth): void {}
|
|
|
|
public function setDateTime(int $year, int $month, int $dayOfMonth, int $hour, int $minute, ?int $second = null): void {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_set_first_day_of_week
|
|
*/
|
|
public function setFirstDayOfWeek(int $dayOfWeek): true {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_set_lenient
|
|
*/
|
|
public function setLenient(bool $lenient): true {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_set_repeated_wall_time_option
|
|
*/
|
|
public function setRepeatedWallTimeOption(int $option): true {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_set_skipped_wall_time_option
|
|
*/
|
|
public function setSkippedWallTimeOption(int $option): true {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_set_time
|
|
*/
|
|
public function setTime(float $timestamp): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
*/
|
|
public function setTimeZone(IntlTimeZone|DateTimeZone|string|null $timezone): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlcal_to_date_time
|
|
*/
|
|
public function toDateTime(): DateTime|false {}
|
|
}
|
|
|
|
/** @not-serializable */
|
|
class IntlGregorianCalendar extends IntlCalendar
|
|
{
|
|
public static function createFromDate(int $year, int $month, int $dayOfMonth): static {}
|
|
|
|
public static function createFromDateTime(int $year, int $month, int $dayOfMonth, int $hour, int $minute, ?int $second = null): static {}
|
|
|
|
/**
|
|
* @param DateTimeZone|IntlTimeZone|string|int|null $timezoneOrYear
|
|
* @param string|int|null $localeOrMonth
|
|
* @param int $day
|
|
* @param int $hour
|
|
* @param int $minute
|
|
* @param int $second
|
|
*/
|
|
public function __construct($timezoneOrYear = UNKNOWN, $localeOrMonth = UNKNOWN, $day = UNKNOWN, $hour = UNKNOWN, $minute = UNKNOWN, $second = UNKNOWN) {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlgregcal_set_gregorian_change
|
|
*/
|
|
public function setGregorianChange(float $timestamp): bool {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlgregcal_get_gregorian_change
|
|
*/
|
|
public function getGregorianChange(): float {}
|
|
|
|
/**
|
|
* @tentative-return-type
|
|
* @alias intlgregcal_is_leap_year
|
|
*/
|
|
public function isLeapYear(int $year): bool {}
|
|
}
|