code
stringlengths 31
1.39M
| docstring
stringlengths 23
16.8k
| func_name
stringlengths 1
126
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
166
| url
stringlengths 50
220
| license
stringclasses 7
values |
---|---|---|---|---|---|---|---|
#[Pure]
function locale_get_display_language(string $locale, #[ElementAvailable(from: '5.3', to: '5.6')] ?string $displayLocale, #[ElementAvailable(from: '7.0')] ?string $displayLocale = null) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Returns an appropriately localized display name for language of the inputlocale
@link https://php.net/manual/en/locale.getdisplaylanguage.php
@param string $locale <p>
The locale to return a display language for
</p>
@param string|null $displayLocale <p>
Optional format locale to use to display the language name
</p>
@return string|false display name of the language for the $locale in the format appropriate for
$in_locale.
|
locale_get_display_language
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function locale_get_display_variant(string $locale, #[ElementAvailable(from: '5.3', to: '5.6')] ?string $displayLocale, #[ElementAvailable(from: '7.0')] ?string $displayLocale = null) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Returns an appropriately localized display name for variants of the input locale
@link https://php.net/manual/en/locale.getdisplayvariant.php
@param string $locale <p>
The locale to return a display variant for
</p>
@param string|null $displayLocale <p>
Optional format locale to use to display the variant name
</p>
@return string|false Display name of the variant for the $locale in the format appropriate for
$in_locale.
|
locale_get_display_variant
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function locale_parse(string $locale) : ?array
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Returns a key-value array of locale ID subtag elements.
@link https://php.net/manual/en/locale.parselocale.php
@param string $locale <p>
The locale to extract the subtag array from. Note: The 'variant' and
'private' subtags can take maximum 15 values whereas 'extlang' can take
maximum 3 values.
</p>
@return string[]|null an array containing a list of key-value pairs, where the keys
identify the particular locale ID subtags, and the values are the
associated subtag values. The array will be ordered as the locale id
subtags e.g. in the locale id if variants are '-varX-varY-varZ' then the
returned array will have variant0=>varX , variant1=>varY ,
variant2=>varZ
|
locale_parse
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function locale_get_all_variants(string $locale) : ?array
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Gets the variants for the input locale
@link https://php.net/manual/en/locale.getallvariants.php
@param string $locale <p>
The locale to extract the variants from
</p>
@return array|null The array containing the list of all variants subtag for the locale
or <b>NULL</b> if not present
|
locale_get_all_variants
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function locale_filter_matches(string $languageTag, string $locale, #[ElementAvailable(from: '5.3', to: '5.6')] bool $canonicalize, #[ElementAvailable(from: '7.0')] bool $canonicalize = \false) : ?bool
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Checks if a language tag filter matches with locale
@link https://php.net/manual/en/locale.filtermatches.php
@param string $languageTag <p>
The language tag to check
</p>
@param string $locale <p>
The language range to check against
</p>
@param bool $canonicalize <p>
If true, the arguments will be converted to canonical form before
matching.
</p>
@return bool|null <b>TRUE</b> if $locale matches $langtag <b>FALSE</b> otherwise.
|
locale_filter_matches
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function locale_canonicalize(string $locale) : ?string
{
}
|
Canonicalize the locale string
@param string $locale
@return null|string
|
locale_canonicalize
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function locale_lookup(array $languageTag, string $locale, #[ElementAvailable(from: '5.3', to: '5.6')] bool $canonicalize, #[ElementAvailable(from: '5.3', to: '5.6')] ?string $defaultLocale, #[ElementAvailable(from: '7.0')] bool $canonicalize = \false, #[ElementAvailable(from: '7.0')] ?string $defaultLocale = null) : ?string
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Searches the language tag list for the best match to the language
@link https://php.net/manual/en/locale.lookup.php
@param string[] $languageTag <p>
An array containing a list of language tags to compare to
<i>locale</i>. Maximum 100 items allowed.
</p>
@param string $locale <p>
The locale to use as the language range when matching.
</p>
@param bool $canonicalize <p>
If true, the arguments will be converted to canonical form before
matching.
</p>
@param string|null $defaultLocale <p>
The locale to use if no match is found.
</p>
@return string|null The closest matching language tag or default value.
|
locale_lookup
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function locale_accept_from_http(string $header) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Tries to find out best available locale based on HTTP "Accept-Language" header
@link https://php.net/manual/en/locale.acceptfromhttp.php
@param string $header <p>
The string containing the "Accept-Language" header according to format in RFC 2616.
</p>
@return string|false The corresponding locale identifier.
|
locale_accept_from_http
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function msgfmt_create(string $locale, string $pattern) : ?\MessageFormatter
{
}
|
Constructs a new message formatter
@param string $locale
@param string $pattern
@return MessageFormatter|null
|
msgfmt_create
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function msgfmt_format(\MessageFormatter $formatter, array $values) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Format the message
@link https://php.net/manual/en/messageformatter.format.php
@param MessageFormatter $formatter
@param array $values <p>
Arguments to insert into the format string
</p>
@return string|false The formatted string, or <b>FALSE</b> if an error occurred
|
msgfmt_format
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function msgfmt_format_message(string $locale, string $pattern, array $values) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Quick format message
@link https://php.net/manual/en/messageformatter.formatmessage.php
@param string $locale <p>
The locale to use for formatting locale-dependent parts
</p>
@param string $pattern <p>
The pattern string to insert things into.
The pattern uses an 'apostrophe-friendly' syntax; it is run through
umsg_autoQuoteApostrophe
before being interpreted.
</p>
@param array $values <p>
The array of values to insert into the format string
</p>
@return string|false The formatted pattern string or <b>FALSE</b> if an error occurred
|
msgfmt_format_message
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function msgfmt_parse(\MessageFormatter $formatter, string $string) : array|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Parse input string according to pattern
@link https://php.net/manual/en/messageformatter.parse.php
@param MessageFormatter $formatter
@param string $string <p>
The string to parse
</p>
@return array|false An array containing the items extracted, or <b>FALSE</b> on error
|
msgfmt_parse
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function msgfmt_parse_message(string $locale, string $pattern, string $message) : array|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Quick parse input string
@link https://php.net/manual/en/messageformatter.parsemessage.php
@param string $locale <p>
The locale to use for parsing locale-dependent parts
</p>
@param string $pattern <p>
The pattern with which to parse the <i>value</i>.
</p>
@param string $message <p>
The string to parse, conforming to the <i>pattern</i>.
</p>
@return array|false An array containing items extracted, or <b>FALSE</b> on error
|
msgfmt_parse_message
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function msgfmt_get_pattern(\MessageFormatter $formatter) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the pattern used by the formatter
@link https://php.net/manual/en/messageformatter.getpattern.php
@param MessageFormatter $formatter
@return string|false The pattern string for this message formatter
|
msgfmt_get_pattern
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function msgfmt_get_locale(\MessageFormatter $formatter) : string
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the locale for which the formatter was created.
@link https://php.net/manual/en/messageformatter.getlocale.php
@param MessageFormatter $formatter
@return string The locale name
|
msgfmt_get_locale
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure(\true)]
function msgfmt_get_error_code(\MessageFormatter $formatter) : int
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the error code from last operation
@link https://php.net/manual/en/messageformatter.geterrorcode.php
@param MessageFormatter $formatter
@return int The error code, one of UErrorCode values. Initial value is U_ZERO_ERROR.
|
msgfmt_get_error_code
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure(\true)]
function msgfmt_get_error_message(\MessageFormatter $formatter) : string
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the error text from the last operation
@link https://php.net/manual/en/messageformatter.geterrormessage.php
@param MessageFormatter $formatter
@return string Description of the last error.
|
msgfmt_get_error_message
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_create(?string $locale, #[ElementAvailable(from: '5.3', to: '8.0')] int $dateType, #[ElementAvailable(from: '8.1')] int $dateType = 0, #[ElementAvailable(from: '5.3', to: '8.0')] int $timeType, #[ElementAvailable(from: '8.1')] int $timeType = 0, $timezone = null, \IntlCalendar|int|null $calendar = null, #[LanguageAware(['8.0' => 'string|null'], default: 'string')] $pattern = null) : ?\IntlDateFormatter
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Create a date formatter
@link https://php.net/manual/en/intldateformatter.create.php
@param string|null $locale <p>
Locale to use when formatting or parsing.
</p>
@param int $dateType <p>
Date type to use (<b>none</b>,
<b>short</b>, <b>medium</b>,
<b>long</b>, <b>full</b>).
This is one of the
IntlDateFormatter constants.
</p>
@param int $timeType <p>
Time type to use (<b>none</b>,
<b>short</b>, <b>medium</b>,
<b>long</b>, <b>full</b>).
This is one of the
IntlDateFormatter constants.
</p>
@param string|null $timezone [optional] <p>
Time zone ID, default is system default.
</p>
@param IntlCalendar|int|null $calendar [optional] <p>
Calendar to use for formatting or parsing; default is Gregorian.
This is one of the
IntlDateFormatter calendar constants.
</p>
@param string|null $pattern [optional] <p>
Optional pattern to use when formatting or parsing.
Possible patterns are documented at http://userguide.icu-project.org/formatparse/datetime.
</p>
@return IntlDateFormatter|null
|
datefmt_create
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_get_datetype(\IntlDateFormatter $formatter) : int|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the datetype used for the IntlDateFormatter
@link https://php.net/manual/en/intldateformatter.getdatetype.php
@param IntlDateFormatter $formatter
@return int|false The current date type value of the formatter.
|
datefmt_get_datetype
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_get_timetype(\IntlDateFormatter $formatter) : int|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the timetype used for the IntlDateFormatter
@link https://php.net/manual/en/intldateformatter.gettimetype.php
@param IntlDateFormatter $formatter
@return int|false The current date type value of the formatter.
|
datefmt_get_timetype
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_get_calendar(\IntlDateFormatter $formatter) : int|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the calendar type used for the IntlDateFormatter
@link https://php.net/manual/en/intldateformatter.getcalendar.php
@param IntlDateFormatter $formatter
@return int|false The calendar being used by the formatter.
|
datefmt_get_calendar
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_get_locale(\IntlDateFormatter $formatter, #[ElementAvailable(from: '8.0')] int $type = \ULOC_ACTUAL_LOCALE) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the locale used by formatter
@link https://php.net/manual/en/intldateformatter.getlocale.php
@param IntlDateFormatter $formatter
@param int $type [optional]
@return string|false the locale of this formatter or 'false' if error
|
datefmt_get_locale
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_get_timezone_id(\IntlDateFormatter $formatter) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the timezone-id used for the IntlDateFormatter
@link https://php.net/manual/en/intldateformatter.gettimezoneid.php
@param IntlDateFormatter $formatter
@return string|false ID string for the time zone used by this formatter.
|
datefmt_get_timezone_id
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_get_calendar_object(\IntlDateFormatter $formatter) : \IntlCalendar|false|null
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 3.0.0)<br/>
Get copy of formatter's calendar object
@link https://secure.php.net/manual/en/intldateformatter.getcalendarobject.php
@param IntlDateFormatter $formatter
@return IntlCalendar|false|null A copy of the internal calendar object used by this formatter.
|
datefmt_get_calendar_object
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_get_timezone(\IntlDateFormatter $formatter) : \IntlTimeZone|false
{
}
|
(PHP 5 >= 5.5.0, PECL intl >= 3.0.0)<br/>
Get formatter's timezone
@link https://secure.php.net/manual/en/intldateformatter.gettimezone.php
@param IntlDateFormatter $formatter
@return IntlTimeZone|false The associated IntlTimeZone object or FALSE on failure.
|
datefmt_get_timezone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Deprecated(replacement: "datefmt_set_timezone(%parametersList%)", since: "5.5")]
function datefmt_set_timezone_id(\MessageFormatter $mf, $zone)
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Sets the time zone to use
@link https://php.net/manual/en/intldateformatter.settimezoneid.php
@param MessageFormatter $mf
@param string $zone <p>
The time zone ID string of the time zone to use.
If <b>NULL</b> or the empty string, the default time zone for the runtime is used.
</p>
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@removed 7.0
@see datefmt_set_timezone()
|
datefmt_set_timezone_id
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[LanguageAware(['8.3' => 'bool'], default: 'bool|null')]
function datefmt_set_timezone(\IntlDateFormatter $formatter, $timezone)
{
}
|
(PHP 5 >= 5.5.0, PECL intl >= 3.0.0)<br/>
Sets formatter's timezone
@link https://php.net/manual/en/intldateformatter.settimezone.php
@param IntlDateFormatter $formatter
@param IntlTimeZone|DateTimeZone|string|null $timezone <p>
The timezone to use for this formatter. This can be specified in the
following forms:
<ul>
<li>
<p>
<b>NULL</b>, in which case the default timezone will be used, as specified in
the ini setting {@link "https://secure.php.net/manual/en/datetime.configuration.php#ini.date.timezone" date.timezone} or
through the function {@link "https://secure.php.net/manual/en/function.date-default-timezone-set.php" date_default_timezone_set()} and as
returned by {@link "https://secure.php.net/manual/en/function.date-default-timezone-get.php" date_default_timezone_get()}.
</p>
</li>
<li>
<p>
An {@link "https://secure.php.net/manual/en/class.intltimezone.php" IntlTimeZone}, which will be used directly.
</p>
</li>
<li>
<p>
A {@link "https://secure.php.net/manual/en/class.datetimezone.php" DateTimeZone}. Its identifier will be extracted
and an ICU timezone object will be created; the timezone will be backed
by ICU's database, not PHP's.
</p>
</li>
<li>
<p>
A {@link "https://secure.php.net/manual/en/language.types.string.php" string}, which should be a valid ICU timezone identifier.
See <b>IntlTimeZone::createTimeZoneIDEnumeration()</b>. Raw offsets such as <em>"GMT+08:30"</em> are also accepted.
</p>
</li>
</ul>
</p>
@return bool|null <b>TRUE</b> on success or <b>FALSE</b> on failure.
|
datefmt_set_timezone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_get_pattern(\IntlDateFormatter $formatter) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the pattern used for the IntlDateFormatter
@link https://php.net/manual/en/intldateformatter.getpattern.php
@param IntlDateFormatter $formatter
@return string|false The pattern string being used to format/parse.
|
datefmt_get_pattern
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_is_lenient(\IntlDateFormatter $formatter) : bool
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the lenient used for the IntlDateFormatter
@link https://php.net/manual/en/intldateformatter.islenient.php
@param IntlDateFormatter $formatter
@return bool <b>TRUE</b> if parser is lenient, <b>FALSE</b> if parser is strict. By default the parser is lenient.
|
datefmt_is_lenient
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_format(#[LanguageAware(['8.0' => 'IntlDateFormatter'], default: '')] #[ElementAvailable(from: '5.3', to: '7.4')] $formatter = null, #[LanguageAware(['8.0' => 'IntlDateFormatter'], default: '')] #[ElementAvailable(from: '8.0')] $formatter, #[ElementAvailable(from: '5.3', to: '7.4')] $datetime = null, #[ElementAvailable(from: '8.0')] $datetime) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Format the date/time value as a string
@link https://php.net/manual/en/intldateformatter.format.php
@param IntlDateFormatter $formatter
@param object|array|string|int|float $datetime <p>
Value to format. This may be a <b>DateTime</b> object,
an integer representing a Unix timestamp value (seconds
since epoch, UTC) or an array in the format output by
<b>localtime</b>.
</p>
@return string|false The formatted string or, if an error occurred, <b>FALSE</b>.
|
datefmt_format
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function datefmt_format_object($datetime, $format = null, ?string $locale = null) : string|false
{
}
|
(PHP 5 >= 5.5.0, PECL intl >= 3.0.0)<br/>
Formats an object
@link https://secure.php.net/manual/en/intldateformatter.formatobject.php
@param IntlCalendar|DateTimeInterface $datetime <p>
An object of type IntlCalendar or DateTime. The timezone information in the object will be used.
</p>
@param array|int|string|null $format [optional] <p>
How to format the date/time. This can either be an {https://secure.php.net/manual/en/language.types.array.php array} with
two elements (first the date style, then the time style, these being one
of the constants <b>IntlDateFormatter::NONE</b>,
<b>IntlDateFormatter::SHORT</b>,
<b>IntlDateFormatter::MEDIUM</b>,
<b>IntlDateFormatter::LONG</b>,
<b>IntlDateFormatter::FULL</b>), a long with
the value of one of these constants (in which case it will be used both
for the time and the date) or a {@link https://secure.php.net/manual/en/language.types.string.php} with the format
described in {@link http://www.icu-project.org/apiref/icu4c/classSimpleDateFormat.html#details the ICU documentation}
documentation. If <b>NULL</b>, the default style will be used.
</p>
@param string|null $locale [optional] <p>
The locale to use, or NULL to use the default one.</p>
@return string|false The formatted string or, if an error occurred, <b>FALSE</b>.
|
datefmt_format_object
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure(\true)]
function datefmt_get_error_code(\IntlDateFormatter $formatter) : int
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the error code from last operation
@link https://php.net/manual/en/intldateformatter.geterrorcode.php
@param IntlDateFormatter $formatter
@return int The error code, one of UErrorCode values. Initial value is U_ZERO_ERROR.
|
datefmt_get_error_code
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure(\true)]
function datefmt_get_error_message(\IntlDateFormatter $formatter) : string
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the error text from the last operation.
@link https://php.net/manual/en/intldateformatter.geterrormessage.php
@param IntlDateFormatter $formatter
@return string Description of the last error.
|
datefmt_get_error_message
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function grapheme_strlen(string $string) : int|false|null
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get string length in grapheme units
@link https://php.net/manual/en/function.grapheme-strlen.php
@param string $string <p>
The string being measured for length. It must be a valid UTF-8 string.
</p>
@return int|false|null The length of the string on success, and 0 if the string is empty.
|
grapheme_strlen
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function grapheme_strpos(string $haystack, string $needle, int $offset = 0) : int|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Find position (in grapheme units) of first occurrence of a string
@link https://php.net/manual/en/function.grapheme-strpos.php
@param string $haystack <p>
The string to look in. Must be valid UTF-8.
</p>
@param string $needle <p>
The string to look for. Must be valid UTF-8.
</p>
@param int $offset [optional] <p>
The optional $offset parameter allows you to specify where in $haystack to
start searching as an offset in grapheme units (not bytes or characters).
The position returned is still relative to the beginning of haystack
regardless of the value of $offset.
</p>
@return int|false the position as an integer. If needle is not found, strpos() will return boolean FALSE.
|
grapheme_strpos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function grapheme_stripos(string $haystack, string $needle, int $offset = 0) : int|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Find position (in grapheme units) of first occurrence of a case-insensitive string
@link https://php.net/manual/en/function.grapheme-stripos.php
@param string $haystack <p>
The string to look in. Must be valid UTF-8.
</p>
@param string $needle <p>
The string to look for. Must be valid UTF-8.
</p>
@param int $offset [optional] <p>
The optional $offset parameter allows you to specify where in haystack to
start searching as an offset in grapheme units (not bytes or characters).
The position returned is still relative to the beginning of haystack
regardless of the value of $offset.
</p>
@return int|false the position as an integer. If needle is not found, grapheme_stripos() will return boolean FALSE.
|
grapheme_stripos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function grapheme_strrpos(string $haystack, string $needle, int $offset = 0) : int|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Find position (in grapheme units) of last occurrence of a string
@link https://php.net/manual/en/function.grapheme-strrpos.php
@param string $haystack <p>
The string to look in. Must be valid UTF-8.
</p>
@param string $needle <p>
The string to look for. Must be valid UTF-8.
</p>
@param int $offset [optional] <p>
The optional $offset parameter allows you to specify where in $haystack to
start searching as an offset in grapheme units (not bytes or characters).
The position returned is still relative to the beginning of haystack
regardless of the value of $offset.
</p>
@return int|false the position as an integer. If needle is not found, grapheme_strrpos() will return boolean FALSE.
|
grapheme_strrpos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function grapheme_strripos(string $haystack, string $needle, int $offset = 0) : int|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Find position (in grapheme units) of last occurrence of a case-insensitive string
@link https://php.net/manual/en/function.grapheme-strripos.php
@param string $haystack <p>
The string to look in. Must be valid UTF-8.
</p>
@param string $needle <p>
The string to look for. Must be valid UTF-8.
</p>
@param int $offset [optional] <p>
The optional $offset parameter allows you to specify where in $haystack to
start searching as an offset in grapheme units (not bytes or characters).
The position returned is still relative to the beginning of haystack
regardless of the value of $offset.
</p>
@return int|false the position as an integer. If needle is not found, grapheme_strripos() will return boolean FALSE.
|
grapheme_strripos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function grapheme_strstr(string $haystack, string $needle, bool $beforeNeedle = \false) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Returns part of haystack string from the first occurrence of needle to the end of haystack.
@link https://php.net/manual/en/function.grapheme-strstr.php
@param string $haystack <p>
The input string. Must be valid UTF-8.
</p>
@param string $needle <p>
The string to look for. Must be valid UTF-8.
</p>
@param bool $beforeNeedle [optional] <p>
If <b>TRUE</b>, grapheme_strstr() returns the part of the
haystack before the first occurrence of the needle (excluding the needle).
</p>
@return string|false the portion of string, or FALSE if needle is not found.
|
grapheme_strstr
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function grapheme_stristr(string $haystack, string $needle, bool $beforeNeedle = \false) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Returns part of haystack string from the first occurrence of case-insensitive needle to the end of haystack.
@link https://php.net/manual/en/function.grapheme-stristr.php
@param string $haystack <p>
The input string. Must be valid UTF-8.
</p>
@param string $needle <p>
The string to look for. Must be valid UTF-8.
</p>
@param bool $beforeNeedle [optional] <p>
If <b>TRUE</b>, grapheme_strstr() returns the part of the
haystack before the first occurrence of the needle (excluding needle).
</p>
@return string|false the portion of $haystack, or FALSE if $needle is not found.
|
grapheme_stristr
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_create_instance($timezone = null, ?string $locale = null) : ?\IntlCalendar
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Create a new IntlCalendar
@link https://secure.php.net/manual/en/intlcalendar.createinstance.php
@param IntlTimeZone|DateTimeZone|string|null $timezone [optional] <p> <p>
The timezone to use.
</p>
<ul>
<li>
<p>
<b>NULL</b>, in which case the default timezone will be used, as specified in
the ini setting {@link https://secure.php.net/manual/en/datetime.configuration.php#ini.date.timezone date.timezone} or
through the function {@link https://secure.php.net/manual/en/function.date-default-timezone-set.php date_default_timezone_set()} and as
returned by {@link https://secure.php.net/manual/en/function.date-default-timezone-get.php date_default_timezone_get()}.
</p>
</li>
<li>
<p>
An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone}, which will be used directly.
</p>
</li>
<li>
<p>
A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone}. Its identifier will be extracted
and an ICU timezone object will be created; the timezone will be backed
by ICU's database, not PHP's.
</p>
</li>
<li>
<p>
A {@link https://secure.php.net/manual/en/language.types.string.php string}, which should be a valid ICU timezone identifier.
See <b>IntlTimeZone::createTimeZoneIDEnumeration()</b>. Raw
offsets such as <em>"GMT+08:30"</em> are also accepted.
</p>
</li>
</ul>
</p>
@param string|null $locale [optional] <p>
A locale to use or <b>NULL</b> to use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.default-locale the default locale}.
</p>
@return IntlCalendar|null
The created {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} instance or <b>NULL</b> on
failure.
@since 5.5
|
intlcal_create_instance
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_get_keyword_values_for_locale(string $keyword, string $locale, bool $onlyCommon) : \IntlIterator|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get set of locale keyword values
@param string $keyword <p>
The locale keyword for which relevant values are to be queried. Only
<em>'calendar'</em> is supported.
</p>
@param string $locale <p>
The locale onto which the keyword/value pair are to be appended.
</p>
@param bool $onlyCommon
<p>
Whether to show only the values commonly used for the specified locale.
</p>
@return IntlIterator|false An iterator that yields strings with the locale keyword values or <b>FALSE</b> on failure.
@since 5.5
|
intlcal_get_keyword_values_for_locale
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure(\true)]
function intlcal_get_now() : float
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get number representing the current time
@link https://secure.php.net/manual/en/intlcalendar.getnow.php
@return float A float representing a number of milliseconds since the epoch, not counting leap seconds.
@since 5.5
|
intlcal_get_now
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_get_available_locales() : array
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get array of locales for which there is data
@link https://secure.php.net/manual/en/intlcalendar.getavailablelocales.php
@return string[] An array of strings, one for which locale.
@since 5.5
|
intlcal_get_available_locales
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intl_get($calendar, $field)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the value for a field
@link https://secure.php.net/manual/en/intlcalendar.get.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $field <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@return int An integer with the value of the time field.
@since 5.5
|
intl_get
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'float|false'], default: 'float')]
function intlcal_get_time(\IntlCalendar $calendar)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get time currently represented by the object
@param IntlCalendar $calendar <p>The calendar whose time will be checked against this object's time.</p>
@return float
A {@link https://secure.php.net/manual/en/language.types.float.php float} representing the number of milliseconds elapsed since the
reference time (1 Jan 1970 00:00:00 UTC).
@since 5.5
|
intlcal_get_time
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_after(\IntlCalendar $calendar, \IntlCalendar $other) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Whether this object's time is after that of the passed object
https://secure.php.net/manual/en/intlcalendar.after.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param IntlCalendar $other <p>The calendar whose time will be checked against this object's time.</p>
@return bool
Returns <b>TRUE</b> if this object's current time is after that of the
<em>calendar</em> argument's time. Returns <b>FALSE</b> otherwise.
Also returns <b>FALSE</b> on failure. You can use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or
{@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions.
@since 5.5
|
intlcal_after
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_before(\IntlCalendar $calendar, \IntlCalendar $other) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Whether this object's time is before that of the passed object
@link https://secure.php.net/manual/en/intlcalendar.before.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param IntlCalendar $other <p> The calendar whose time will be checked against this object's time.</p>
@return bool
<p>
Returns <b>TRUE</B> if this object's current time is before that of the
<em>calendar</em> argument's time. Returns <b>FALSE</b> otherwise.
Also returns <b>FALSE</b> on failure. You can use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or
{@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to detect error conditions.
</p>
@since 5.5
|
intlcal_before
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[LanguageAware(['8.3' => 'true'], default: 'bool')]
function intlcal_set(\IntlCalendar $calendar, int $year, int $month, int $dayOfMonth, int $hour, int $minute, int $second)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Set a time field or several common fields at once
@link https://secure.php.net/manual/en/intlcalendar.set.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $year <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@param int $month <p>
The new value for <b>IntlCalendar::FIELD_MONTH</b>.
</p>
@param int $dayOfMonth [optional] <p>
The new value for <b>IntlCalendar::FIELD_DAY_OF_MONTH</b>.
The month sequence is zero-based, i.e., January is represented by 0,
February by 1, ..., December is 11 and Undecember (if the calendar has
it) is 12.
</p>
@param int $hour [optional]
<p>
The new value for <b>IntlCalendar::FIELD_HOUR_OF_DAY</b>.
</p>
@param int $minute [optional]
<p>
The new value for <b>IntlCalendar::FIELD_MINUTE</b>.
</p>
@param int $second [optional] <p>
The new value for <b>IntlCalendar::FIELD_SECOND</b>.
</p>
@return bool Returns <b>TRUE</b> on success and <b>FALSE</b> on failure.
@since 5.5
|
intlcal_set
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[LanguageAware(['8.3' => 'true'], default: 'bool')]
function intlcal_clear(\IntlCalendar $calendar, ?int $field = null) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Clear a field or all fields
@link https://secure.php.net/manual/en/intlcalendar.clear.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int|null $field [optional] <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure. Failure can only occur is invalid arguments are provided.
@since 5.5
|
intlcal_clear
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_field_difference(\IntlCalendar $calendar, float $timestamp, int $field)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Calculate difference between given time and this object's time
@link https://secure.php.net/manual/en/intlcalendar.fielddifference.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param float $timestamp <p>
The time against which to compare the quantity represented by the
<em>field</em>. For the result to be positive, the time
given for this parameter must be ahead of the time of the object the
method is being invoked on.
</p>
@param int $field <p>
The field that represents the quantity being compared.
</p>
<p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@return int Returns a (signed) difference of time in the unit associated with the
specified field or <b>FALSE</b> on failure.
@since 5.5
|
intlcal_field_difference
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get_actual_maximum(\IntlCalendar $calendar, int $field)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
The maximum value for a field, considering the object's current time
@link https://secure.php.net/manual/en/intlcalendar.getactualmaximum.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $field <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@return int
An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing the maximum value in the units associated
with the given <em>field</em> or <b>FALSE</b> on failure.
@since 5.5
|
intlcal_get_actual_maximum
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get_actual_minimum(\IntlCalendar $calendar, int $field)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
The minimum value for a field, considering the object's current time
@link https://secure.php.net/manual/en/intlcalendar.getactualminimum.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $field <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}.
These are integer values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@return int
An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing the minimum value in the field's
unit or <b>FALSE</b> on failure.
@since 5.5
|
intlcal_get_actual_minimum
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get_day_of_week_type(\IntlCalendar $calendar, int $dayOfWeek)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
@link https://secure.php.net/manual/en/intlcalendar.getdayofweektype.php
Tell whether a day is a weekday, weekend or a day that has a transition between the two
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $dayOfWeek <p>
One of the constants <b>IntlCalendar::DOW_SUNDAY</b>,
<b>IntlCalendar::DOW_MONDAY</b>, ...,
<b>IntlCalendar::DOW_SATURDAY</b>.
</p>
@return int
Returns one of the constants
<b>IntlCalendar::DOW_TYPE_WEEKDAY</b>,
<b>IntlCalendar::DOW_TYPE_WEEKEND</b>,
<b>IntlCalendar::DOW_TYPE_WEEKEND_OFFSET</b> or
<b>IntlCalendar::DOW_TYPE_WEEKEND_CEASE</b> or <b>FALSE</b> on failure.
@since 5.5
|
intlcal_get_day_of_week_type
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get_first_day_of_week(\IntlCalendar $calendar)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the first day of the week for the calendar's locale
@link https://secure.php.net/manual/en/intlcalendar.getfirstdayofweek.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return int
One of the constants <b>IntlCalendar::DOW_SUNDAY</b>,
<b>IntlCalendar::DOW_MONDAY</b>, ...,
<b>IntlCalendar::DOW_SATURDAY</b> or <b>FALSE</b> on failure.
@since 5.5
|
intlcal_get_first_day_of_week
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_greates_minimum($calendar, $field)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the largest local minimum value for a field
@link https://secure.php.net/manual/en/intlcalendar.getgreatestminimum.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $field <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.</p>
@return int
An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's
unit, or <b>FALSE</b> on failure.
@since 5.5
|
intlcal_greates_minimum
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get(\IntlCalendar $calendar, int $field)
{
}
|
(PHP >= 5.5.0, PECL intl >= 3.0.0a1)<br/>
Gets the value for a specific field.
@link https://www.php.net/manual/en/intlcalendar.get.php
@param IntlCalendar $calendar <p>
The IntlCalendar resource.
</p>
@param int $field <p>
One of the IntlCalendar date/time field constants. These are integer values between 0 and IntlCalendar::FIELD_COUNT.
</p>
@return int An integer with the value of the time field.
|
intlcal_get
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get_least_maximum(\IntlCalendar $calendar, int $field)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the smallest local maximum for a field
@link https://secure.php.net/manual/en/intlcalendar.getleastmaximum.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $field <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@return int
<p>An {@link https://secure.php.net/manual/en/language.types.integer.ph int} representing a field value in the field's
unit or <b>FALSE</b> on failure.
</p>
@since 5.5
|
intlcal_get_least_maximum
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get_greatest_minimum(\IntlCalendar $calendar, int $field)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the largest local minimum value for a field
@link https://secure.php.net/manual/en/intlcalendar.getgreatestminimum.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $field <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.</p>
@return int
An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a field value, in the field's
unit, or <b>FALSE</b> on failure.
@since 5.5
|
intlcal_get_greatest_minimum
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intcal_get_maximum($calendar, $field)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the global maximum value for a field
@link https://secure.php.net/manual/en/intlcalendar.getmaximum.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $field <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@return int|false
@since 5.5
|
intcal_get_maximum
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get_minimal_days_in_first_week(\IntlCalendar $calendar)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
@link https://secure.php.net/manual/en/intlcalendar.getminimaldaysinfirstweek.php
Get minimal number of days the first week in a year or month can have
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return int
An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a number of days or <b>FALSE</b> on failure.
@since 5.5
|
intlcal_get_minimal_days_in_first_week
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get_minimum(\IntlCalendar $calendar, int $field)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the global minimum value for a field
@link https://secure.php.net/manual/en/intlcalendar.getminimum.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $field <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@return int
An int representing a value for the given field in the field's unit or FALSE on failure.
@since 5.5
|
intlcal_get_minimum
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_get_time_zone(\IntlCalendar $calendar) : \IntlTimeZone|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the object's timezone
@link https://secure.php.net/manual/en/intlcalendar.gettimezone.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return IntlTimeZone|false
An {@link https://secure.php.net/manual/en/class.intltimezone.php IntlTimeZone} object corresponding to the one used
internally in this object.
@since 5.5
|
intlcal_get_time_zone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_get_type(\IntlCalendar $calendar) : string
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the calendar type
@link https://secure.php.net/manual/en/intlcalendar.gettype.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return string
A {@link https://secure.php.net/manual/en/language.types.string.php string} representing the calendar type, such as
<em>'gregorian'</em>, <em>'islamic'</em>, etc.
@since 5.5
|
intlcal_get_type
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get_weekend_transition(\IntlCalendar $calendar, int $dayOfWeek)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get time of the day at which weekend begins or ends
@link https://secure.php.net/manual/en/intlcalendar.getweekendtransition.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $dayOfWeek <p>
One of the constants <b>IntlCalendar::DOW_SUNDAY</b>,
<b>IntlCalendar::DOW_MONDAY</b>, ...,
<b>IntlCalendar::DOW_SATURDAY</b>.
</p>
@return int
The number of milliseconds into the day at which the the weekend begins or
ends or <b>FALSE</b> on failure.
@since 5.5
|
intlcal_get_weekend_transition
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_in_daylight_time(\IntlCalendar $calendar) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Whether the object's time is in Daylight Savings Time
@link https://secure.php.net/manual/en/intlcalendar.indaylighttime.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return bool
Returns <b>TRUE</b> if the date is in Daylight Savings Time, <b>FALSE</b> otherwise.
The value <b>FALSE</b> may also be returned on failure, for instance after
specifying invalid field values on non-lenient mode; use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query
{@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.
@since 5.5
|
intlcal_in_daylight_time
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_is_lenient(\IntlCalendar $calendar) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Whether date/time interpretation is in lenient mode
@link https://secure.php.net/manual/en/intlcalendar.islenient.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return bool
A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} representing whether the calendar is set to lenient mode.
@since 5.5
|
intlcal_is_lenient
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_is_set(\IntlCalendar $calendar, int $field) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Whether a field is set
@link https://secure.php.net/manual/en/intlcalendar.isset.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $field <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@return bool Assuming there are no argument errors, returns <b>TRUE</b> iif the field is set.
@since 5.5
|
intlcal_is_set
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
#[LanguageAware(['8.0' => 'int|false'], default: 'int')]
function intlcal_get_maximum(\IntlCalendar $calendar, int $field)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the global maximum value for a field
@link https://secure.php.net/manual/en/intlcalendar.getmaximum.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $field <p>
One of the {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} date/time {@link https://secure.php.net/manual/en/class.intlcalendar.php#intlcalendar.constants field constants}. These are integer
values between <em>0</em> and
<b>IntlCalendar::FIELD_COUNT</b>.
</p>
@return int|false
@since 5.5
|
intlcal_get_maximum
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_is_equivalent_to(\IntlCalendar $calendar, \IntlCalendar $other) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Whether another calendar is equal but for a different time
@link https://secure.php.net/manual/en/intlcalendar.isequivalentto.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param IntlCalendar $other The other calendar against which the comparison is to be made.
@return bool
Assuming there are no argument errors, returns <b>TRUE</b> iif the calendars are equivalent except possibly for their set time.
@since 5.5
|
intlcal_is_equivalent_to
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_is_weekend(\IntlCalendar $calendar, ?float $timestamp = null) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Whether a certain date/time is in the weekend
@link https://secure.php.net/manual/en/intlcalendar.isweekend.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param float|null $timestamp [optional] <p>
An optional timestamp representing the number of milliseconds since the
epoch, excluding leap seconds. If <b>NULL</b>, this object's current time is
used instead.
</p>
@return bool
<p> A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} indicating whether the given or this object's time occurs
in a weekend.
</p>
<p>
The value <b>FALSE</b> may also be returned on failure, for instance after giving
a date out of bounds on non-lenient mode; use {@link https://secure.php.net/manual/en/intl.configuration.php#ini.intl.use-exceptions exceptions} or query
{@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()} to disambiguate.</p>
@since 5.5
|
intlcal_is_weekend
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[LanguageAware(['8.3' => 'true'], default: 'bool')]
function intlcal_set_first_day_of_week(\IntlCalendar $calendar, int $dayOfWeek)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Set the day on which the week is deemed to start
@link https://secure.php.net/manual/en/intlcalendar.setfirstdayofweek.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $dayOfWeek <p>
One of the constants <b>IntlCalendar::DOW_SUNDAY</b>,
<b>IntlCalendar::DOW_MONDAY</b>, ...,
<b>IntlCalendar::DOW_SATURDAY</b>.
</p>
@return bool Returns TRUE on success. Failure can only happen due to invalid parameters.
@since 5.5
|
intlcal_set_first_day_of_week
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[LanguageAware(['8.3' => 'true'], default: 'bool')]
function intlcal_set_lenient(\IntlCalendar $calendar, bool $lenient)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Set whether date/time interpretation is to be lenient
@link https://secure.php.net/manual/en/intlcalendar.setlenient.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param bool $lenient <p>
Use <b>TRUE</b> to activate the lenient mode; <b>FALSE</b> otherwise.
</p>
@return bool Returns <b>TRUE</b> on success. Failure can only happen due to invalid parameters.
@since 5.5
|
intlcal_set_lenient
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_get_repeated_wall_time_option(\IntlCalendar $calendar) : int
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get behavior for handling repeating wall time
@link https://secure.php.net/manual/en/intlcalendar.getrepeatedwalltimeoption.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return int
One of the constants <b>IntlCalendar::WALLTIME_FIRST</b> or
<b>IntlCalendar::WALLTIME_LAST</b>.
@since 5.5
|
intlcal_get_repeated_wall_time_option
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_equals(\IntlCalendar $calendar, \IntlCalendar $other) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Compare time of two IntlCalendar objects for equality
@link https://secure.php.net/manual/en/intlcalendar.equals.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param IntlCalendar $other
@return bool <p>
Returns <b>TRUE</b> if the current time of both this and the passed in
{@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} object are the same, or <b>FALSE</b>
otherwise. The value <b>FALSE</b> can also be returned on failure. This can only
happen if bad arguments are passed in. In any case, the two cases can be
distinguished by calling {@link https://secure.php.net/manual/en/function.intl-get-error-code.php intl_get_error_code()}.
</p>
@since 5.5
|
intlcal_equals
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_get_skipped_wall_time_option(\IntlCalendar $calendar) : int
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get behavior for handling skipped wall time
@link https://secure.php.net/manual/en/intlcalendar.getskippedwalltimeoption.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return int
One of the constants <b>IntlCalendar::WALLTIME_FIRST</b>,
<b>IntlCalendar::WALLTIME_LAST</b> or
<b>IntlCalendar::WALLTIME_NEXT_VALID</b>.
@since 5.5
|
intlcal_get_skipped_wall_time_option
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[LanguageAware(['8.3' => 'true'], default: 'bool')]
function intlcal_set_repeated_wall_time_option(\IntlCalendar $calendar, int $option)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Set behavior for handling repeating wall times at negative timezone offset transitions
@link https://secure.php.net/manual/en/intlcalendar.setrepeatedwalltimeoption.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $option <p>
One of the constants <b>IntlCalendar::WALLTIME_FIRST</b> or
<b>IntlCalendar::WALLTIME_LAST</b>.
</p>
@return bool
Returns <b>TRUE</b> on success. Failure can only happen due to invalid parameters.
@since 5.5
|
intlcal_set_repeated_wall_time_option
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[LanguageAware(['8.3' => 'true'], default: 'bool')]
function intlcal_set_skipped_wall_time_option(\IntlCalendar $calendar, int $option)
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Set behavior for handling skipped wall times at positive timezone offset transitions
@link https://secure.php.net/manual/en/intlcalendar.setskippedwalltimeoption.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@param int $option <p>
One of the constants <b>IntlCalendar::WALLTIME_FIRST</b>,
<b>IntlCalendar::WALLTIME_LAST</b> or
<b>IntlCalendar::WALLTIME_NEXT_VALID</b>.
</p>
@return bool
<p>
Returns <b>TRUE</b> on success. Failure can only happen due to invalid parameters.
</p>
@since 5.5
|
intlcal_set_skipped_wall_time_option
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_from_date_time(\DateTime|string $datetime, #[ElementAvailable(from: '8.0')] ?string $locale = null) : ?\IntlCalendar
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a2)<br/>
Create an IntlCalendar from a DateTime object or string
@link https://secure.php.net/manual/en/intlcalendar.fromdatetime.php
@param DateTime|string $datetime <p>
A {@link https://secure.php.net/manual/en/class.datetime.php DateTime} object or a {@link https://secure.php.net/manual/en/language.types.string.php string} that
can be passed to {@link https://secure.php.net/manual/en/datetime.construct.php DateTime::__construct()}.
</p>
@param null|string $locale
@return IntlCalendar|null
The created {@link https://secure.php.net/manual/en/class.intlcalendar.php IntlCalendar} object or <b>NULL</b> in case of
failure. If a {@link https://secure.php.net/manual/en/language.types.string.php string} is passed, any exception that occurs
inside the {@link https://secure.php.net/manual/en/class.datetime.php DateTime} constructor is propagated.
@since 5.5
|
intlcal_from_date_time
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlcal_to_date_time(\IntlCalendar $calendar) : \DateTime|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a2)<br/>
Convert an IntlCalendar into a DateTime object
@link https://secure.php.net/manual/en/intlcalendar.todatetime.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return DateTime|false
A {@link https://secure.php.net/manual/en/class.datetime.php DateTime} object with the same timezone as this
object (though using PHP's database instead of ICU's) and the same time,
except for the smaller precision (second precision instead of millisecond).
Returns <b>FALSE</b> on failure.
@since 5.5
|
intlcal_to_date_time
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure(\true)]
function intlcal_get_error_code(\IntlCalendar $calendar) : int|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get last error code on the object
@link https://secure.php.net/manual/en/intlcalendar.geterrorcode.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return int|false An ICU error code indicating either success, failure or a warning.
@since 5.5
|
intlcal_get_error_code
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure(\true)]
function intlcal_get_error_message(\IntlCalendar $calendar) : string|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get last error message on the object
@link https://secure.php.net/manual/en/intlcalendar.geterrormessage.php
@param IntlCalendar $calendar <p>
The calendar object, on the procedural style interface.
</p>
@return string|false The error message associated with last error that occurred in a function call on this object, or a string indicating the non-existance of an error.
@since 5.5
|
intlcal_get_error_message
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_count_equivalent_ids(string $timezoneId) : int|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the number of IDs in the equivalency group that includes the given ID
@link https://secure.php.net/manual/en/intltimezone.countequivalentids.php
@param string $timezoneId
@return int|false
@since 5.5
|
intltz_count_equivalent_ids
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intlz_create_default()
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Create a new copy of the default timezone for this host
@link https://secure.php.net/manual/en/intltimezone.createdefault.php
@return IntlTimeZone
@since 5.5
|
intlz_create_default
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_create_enumeration($countryOrRawOffset) : \IntlIterator|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
@link https://secure.php.net/manual/en/intltimezone.createenumeration.php
@param IntlTimeZone|string|int|float|null $countryOrRawOffset [optional]
@return IntlIterator|false
@since 5.5
|
intltz_create_enumeration
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_create_time_zone(string $timezoneId) : ?\IntlTimeZone
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
@link https://secure.php.net/manual/en/intltimezone.createtimezone.php
@param string $timezoneId
@return IntlTimeZone|null
@since 5.5
|
intltz_create_time_zone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_from_date_time_zone(\DateTimeZone $timezone) : ?\IntlTimeZone
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
@link https://secure.php.net/manual/en/intltimezone.fromdatetimezone.php
@param DateTimeZone $timezone
@return IntlTimeZone|null
@since 5.5
|
intltz_from_date_time_zone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_get_canonical_id(string $timezoneId, &$isSystemId) : string|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the canonical system timezone ID or the normalized custom time zone ID for the given time zone ID
@link https://secure.php.net/manual/en/intltimezone.getcanonicalid.php
@param string $timezoneId
@param bool &$isSystemId [optional]
@return string|false
@since 5.5
|
intltz_get_canonical_id
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_get_display_name(\IntlTimeZone $timezone, bool $dst = \false, int $style = 2, ?string $locale) : string|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get a name of this time zone suitable for presentation to the user
@param IntlTimeZone $timezone - <p>
The time zone object, on the procedural style interface.
</p>
@param bool $dst [optional]
@param int $style [optional]
@param string|null $locale [optional]
@return string|false
@since 5.5
|
intltz_get_display_name
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_get_dst_savings(\IntlTimeZone $timezone) : int
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the amount of time to be added to local standard time to get local wall clock time
@param IntlTimeZone $timezone - <p>
The time zone object, on the procedural style interface.
</p>
@return int
@link https://secure.php.net/manual/en/intltimezone.getequivalentid.php
@since 5.5
|
intltz_get_dst_savings
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_get_equivalent_id(string $timezoneId, int $offset) : string|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get an ID in the equivalency group that includes the given ID
@link https://secure.php.net/manual/en/intltimezone.getequivalentid.php
@param string $timezoneId
@param int $offset
@return string|false
@since 5.5
|
intltz_get_equivalent_id
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure(\true)]
function intltz_get_error_code(\IntlTimeZone $timezone) : int|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get last error code on the object
@link https://secure.php.net/manual/en/intltimezone.geterrorcode.php
@param IntlTimeZone $timezone - <p>
The time zone object, on the procedural style interface.
</p>
@return int|false
@since 5.5
|
intltz_get_error_code
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure(\true)]
function intltz_get_error_message(\IntlTimeZone $timezone) : string|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get last error message on the object
@link https://secure.php.net/manual/en/intltimezone.geterrormessage.php
@param IntlTimeZone $timezone - <p>
The time zone object, on the procedural style interface.
</p>
@return string|false
@since 5.5
|
intltz_get_error_message
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_getGMT() : \IntlTimeZone
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Create GMT (UTC) timezone
@link https://secure.php.net/manual/en/intltimezone.getgmt.php
@return IntlTimeZone
@since 5.5
|
intltz_getGMT
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_get_id(\IntlTimeZone $timezone) : string|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get timezone ID
@link https://secure.php.net/manual/en/intltimezone.getid.php
@param IntlTimeZone $timezone
@return string|false
@since 5.5
|
intltz_get_id
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_get_offset(\IntlTimeZone $timezone, float $timestamp, bool $local, &$rawOffset, &$dstOffset) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the time zone raw and GMT offset for the given moment in time
@link https://secure.php.net/manual/en/intltimezone.getoffset.php
@param IntlTimeZone $timezone
@param float $timestamp
@param bool $local
@param int &$rawOffset
@param int &$dstOffset
@return bool
@since 5.5
|
intltz_get_offset
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_get_raw_offset(\IntlTimeZone $timezone) : int
{
}
|
Get the raw GMT offset (before taking daylight savings time into account
@link https://secure.php.net/manual/en/intltimezone.getrawoffset.php
@param IntlTimeZone $timezone
@return int
|
intltz_get_raw_offset
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_get_tz_data_version() : string|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the timezone data version currently used by ICU
@link https://secure.php.net/manual/en/intltimezone.gettzdataversion.php
@return string|false
@since 5.5
|
intltz_get_tz_data_version
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_has_same_rules(\IntlTimeZone $timezone, #[ElementAvailable(from: '5.5', to: '7.4')] \IntlTimeZone $other = null, #[ElementAvailable(from: '8.0')] \IntlTimeZone $other) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Check if this zone has the same rules and offset as another zone
@link https://secure.php.net/manual/en/intltimezone.hassamerules.php
@param IntlTimeZone $timezone
@param IntlTimeZone $other
@return bool
@since 5.5
|
intltz_has_same_rules
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
#[Pure]
function intltz_to_date_time_zone(\IntlTimeZone $timezone) : \DateTimeZone|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Convert to DateTimeZone object
@link https://secure.php.net/manual/en/intltimezone.todatetimezone.php
@param IntlTimeZone $timezone
@return DateTimeZone|false
@since 5.5
|
intltz_to_date_time_zone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/intl.php
|
MIT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.