1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
|
<?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() {}
/**
* @param IntlTimeZone|DateTimeZone|string|null $timezone
* @tentative-return-type
* @alias intlcal_create_instance
*/
public static function createInstance($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 {}
/**
* @param IntlTimeZone|DateTimeZone|string|null $timezone
* @tentative-return-type
* @alias intlcal_set_time_zone
*/
public function setTimeZone($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 {}
}
|