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]
#[TentativeType]
public function createInverse() : ?\Transliterator
{
}
|
(PHP >= 5.4.0, PECL intl >= 2.0.0)<br/>
Create an inverse transliterator
@link https://php.net/manual/en/transliterator.createinverse.php
@return Transliterator|null a <b>Transliterator</b> object on success,
or <b>NULL</b> on failure
|
createInverse
|
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
|
#[TentativeType]
public static function listIDs() : array|false
{
}
|
(PHP >= 5.4.0, PECL intl >= 2.0.0)<br/>
Get transliterator IDs
@link https://php.net/manual/en/transliterator.listids.php
@return array|false An array of registered transliterator IDs on success,
or <b>FALSE</b> on failure.
|
listIDs
|
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]
#[TentativeType]
public function transliterate(#[LanguageAware(['8.0' => 'string'], default: '')] $string, #[LanguageAware(['8.0' => 'int'], default: '')] $start = 0, #[LanguageAware(['8.0' => 'int'], default: '')] $end = -1) : string|false
{
}
|
(PHP >= 5.4.0, PECL intl >= 2.0.0)<br/>
Transliterate a string
@link https://php.net/manual/en/transliterator.transliterate.php
@param string $string <p>
The string to be transformed.
</p>
@param int $start [optional] <p>
The start index (in UTF-16 code units) from which the string will start
to be transformed, inclusive. Indexing starts at 0. The text before will
be left as is.
</p>
@param int $end [optional] <p>
The end index (in UTF-16 code units) until which the string will be
transformed, exclusive. Indexing starts at 0. The text after will be
left as is.
</p>
@return string|false The transfomed string on success, or <b>FALSE</b> on failure.
|
transliterate
|
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]
#[TentativeType]
public function getErrorCode() : int|false
{
}
|
(PHP >= 5.4.0, PECL intl >= 2.0.0)<br/>
Get last error code
@link https://php.net/manual/en/transliterator.geterrorcode.php
@return int|false The error code on success,
or <b>FALSE</b> if none exists, or on failure.
|
getErrorCode
|
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]
#[TentativeType]
public function getErrorMessage() : string|false
{
}
|
(PHP >= 5.4.0, PECL intl >= 2.0.0)<br/>
Get last error message
@link https://php.net/manual/en/transliterator.geterrormessage.php
@return string|false The error code on success,
or <b>FALSE</b> if none exists, or on failure.
|
getErrorMessage
|
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]
public function __construct()
{
}
|
(PHP >= 5.4.0, PECL intl >= 2.0.0)<br/>
Constructor
@link https://php.net/manual/en/spoofchecker.construct.php
|
__construct
|
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
|
#[TentativeType]
public function isSuspicious(#[LanguageAware(['8.0' => 'string'], default: '')] $string, &$errorCode = null) : bool
{
}
|
(PHP >= 5.4.0, PECL intl >= 2.0.0)<br/>
Checks if a given text contains any suspicious characters
@link https://php.net/manual/en/spoofchecker.issuspicious.php
@param string $string <p>
</p>
@param string &$errorCode [optional] <p>
</p>
@return bool
|
isSuspicious
|
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
|
#[TentativeType]
public function areConfusable(#[LanguageAware(['8.0' => 'string'], default: '')] $string1, #[LanguageAware(['8.0' => 'string'], default: '')] $string2, &$errorCode = null) : bool
{
}
|
(PHP >= 5.4.0, PECL intl >= 2.0.0)<br/>
Checks if a given text contains any confusable characters
@link https://php.net/manual/en/spoofchecker.areconfusable.php
@param string $string1 <p>
</p>
@param string $string2 <p>
</p>
@param string &$errorCode [optional] <p>
</p>
@return bool
|
areConfusable
|
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
|
#[TentativeType]
public function setAllowedLocales(#[LanguageAware(['8.0' => 'string'], default: '')] $locales) : void
{
}
|
(PHP >= 5.4.0, PECL intl >= 2.0.0)<br/>
Locales to use when running checks
@link https://php.net/manual/en/spoofchecker.setallowedlocales.php
@param string $locales <p>
</p>
@return void
|
setAllowedLocales
|
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
|
#[TentativeType]
public function setChecks(#[LanguageAware(['8.0' => 'int'], default: '')] $checks) : void
{
}
|
(PHP >= 5.4.0, PECL intl >= 2.0.0)<br/>
Set the checks to run
@link https://php.net/manual/en/spoofchecker.setchecks.php
@param int $checks <p>
</p>
@return void
|
setChecks
|
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
|
#[TentativeType]
public function add(#[LanguageAware(['8.0' => 'int'], default: '')] $field, #[LanguageAware(['8.0' => 'int'], default: '')] $value) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Add a (signed) amount of time to a field
@link https://secure.php.net/manual/en/intlcalendar.add.php
@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>
@param int $value <p>The signed amount to add to the current field. If the amount is positive, the instant will be moved forward; if it is negative, the instant wil be moved into the past. The unit is implicit to the field type.
For instance, hours for <b>IntlCalendar::FIELD_HOUR_OF_DAY</b>.</p>
@return bool Returns TRUE on success or FALSE on failure.
|
add
|
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]
#[TentativeType]
public function after(\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 $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.
|
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]
#[TentativeType]
public function before(\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 $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 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.
|
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
|
#[TentativeType]
public static function createInstance($timezone = null, #[LanguageAware(['8.0' => 'string|null'], default: '')] $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 mixed $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.
|
createInstance
|
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]
#[TentativeType]
public function equals(#[LanguageAware(['8.0' => 'IntlCalendar'], default: '')] $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 $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>
|
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]
#[TentativeType]
public function fieldDifference(#[LanguageAware(['8.0' => 'float'], default: '')] $timestamp, #[LanguageAware(['8.0' => 'int'], default: '')] $field) : int|false
{
}
|
(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 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|false Returns a (signed) difference of time in the unit associated with the
specified field or <b>FALSE</b> on failure.
|
fieldDifference
|
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
|
#[TentativeType]
public static function fromDateTime(#[LanguageAware(['8.0' => 'DateTime|string'], default: '')] $datetime, #[LanguageAware(['8.0' => 'string|null'], default: '')] #[ElementAvailable(from: '8.0')] $locale) : ?\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 mixed $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 $locale [optional]
@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.
|
fromDateTime
|
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]
#[TentativeType]
public function get(#[LanguageAware(['8.0' => 'int'], default: '')] $field) : int|false
{
}
|
(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 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 An integer with the value of the time field.
|
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]
#[TentativeType]
public function getActualMaximum(#[LanguageAware(['8.0' => 'int'], default: '')] $field) : int|false
{
}
|
(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 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
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.
|
getActualMaximum
|
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]
#[TentativeType]
public function getActualMinimum(#[LanguageAware(['8.0' => 'int'], default: '')] $field) : int|false
{
}
|
(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 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
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.
|
getActualMinimum
|
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
|
#[TentativeType]
public static function getAvailableLocales() : 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.
|
getAvailableLocales
|
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]
#[TentativeType]
public function getDayOfWeekType(#[LanguageAware(['8.0' => 'int'], default: '')] $dayOfWeek) : int|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Tell whether a day is a weekday, weekend or a day that has a transition between the two
@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|false
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.
|
getDayOfWeekType
|
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]
#[TentativeType]
public function getErrorCode() : 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
@return int|false An ICU error code indicating either success, failure or a warning.
|
getErrorCode
|
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]
#[TentativeType]
public function getErrorMessage() : 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
@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.
|
getErrorMessage
|
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]
#[TentativeType]
public function getFirstDayOfWeek() : int|false
{
}
|
(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
@return int|false
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.
|
getFirstDayOfWeek
|
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]
#[TentativeType]
public function getGreatestMinimum(#[LanguageAware(['8.0' => 'int'], default: '')] $field) : int|false
{
}
|
(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 int $field
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>.
@return int|false
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.
|
getGreatestMinimum
|
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
|
#[TentativeType]
public static function getKeywordValuesForLocale(#[LanguageAware(['8.0' => 'string'], default: '')] $keyword, #[LanguageAware(['8.0' => 'string'], default: '')] $locale, #[LanguageAware(['8.0' => 'bool'], default: '')] $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 Iterator|false An iterator that yields strings with the locale keyword values or <b>FALSE</b> on failure.
|
getKeywordValuesForLocale
|
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]
#[TentativeType]
public function getLeastMaximum(#[LanguageAware(['8.0' => 'int'], default: '')] $field) : int|false
{
}
|
(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 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
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.
|
getLeastMaximum
|
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]
#[TentativeType]
public function getMaximum(#[LanguageAware(['8.0' => 'int'], default: '')] $field) : int|false
{
}
|
(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 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
|
getMaximum
|
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]
#[TentativeType]
public function getMinimalDaysInFirstWeek() : int|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get minimal number of days the first week in a year or month can have
@link https://secure.php.net/manual/en/intlcalendar.getminimaldaysinfirstweek.php
@return int|false
An {@link https://secure.php.net/manual/en/language.types.integer.php int} representing a number of days or <b>FALSE</b> on failure.
|
getMinimalDaysInFirstWeek
|
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]
#[TentativeType]
public function getMinimum(#[LanguageAware(['8.0' => 'int'], default: '')] $field) : int|false
{
}
|
(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 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|false
An int representing a value for the given field in the field's unit or FALSE on failure.
|
getMinimum
|
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
|
#[TentativeType]
public static function getNow() : float
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get number representing the current time
@return float A float representing a number of milliseconds since the epoch, not counting leap seconds.
|
getNow
|
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]
#[TentativeType]
public function getRepeatedWallTimeOption() : 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
@return int
One of the constants <b>IntlCalendar::WALLTIME_FIRST</b> or
<b>IntlCalendar::WALLTIME_LAST</b>.
|
getRepeatedWallTimeOption
|
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]
#[TentativeType]
public function getSkippedWallTimeOption() : 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
@return int
One of the constants <b>IntlCalendar::WALLTIME_FIRST</b>,
<b>IntlCalendar::WALLTIME_LAST</b> or
<b>IntlCalendar::WALLTIME_NEXT_VALID</b>.
|
getSkippedWallTimeOption
|
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]
#[TentativeType]
public function getTime() : float|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get time currently represented by the object
@return float|false
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).
|
getTime
|
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]
#[TentativeType]
public function getTimeZone() : \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
@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.
|
getTimeZone
|
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]
#[TentativeType]
public function getType() : 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
@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.
|
getType
|
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]
#[TentativeType]
public function getWeekendTransition(#[LanguageAware(['8.0' => 'int'], default: '')] $dayOfWeek) : int|false
{
}
|
(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 string $dayOfWeek <p>
One of the constants <b>IntlCalendar::DOW_SUNDAY</b>,
<b>IntlCalendar::DOW_MONDAY</b>, ...,
<b>IntlCalendar::DOW_SATURDAY</b>.
</p>
@return int|false
The number of milliseconds into the day at which the the weekend begins or
ends or <b>FALSE</b> on failure.
|
getWeekendTransition
|
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]
#[TentativeType]
public function inDaylightTime() : 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
@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.
|
inDaylightTime
|
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]
#[TentativeType]
public function isEquivalentTo(\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 $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.
|
isEquivalentTo
|
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]
#[TentativeType]
public function isLenient() : 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
@return bool
A {@link https://secure.php.net/manual/en/language.types.boolean.php bool} representing whether the calendar is set to lenient mode.
|
isLenient
|
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]
#[TentativeType]
public function isWeekend(#[LanguageAware(['8.0' => 'float|null'], default: '')] $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 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>
|
isWeekend
|
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
|
#[TentativeType]
public function roll(#[LanguageAware(['8.0' => 'int'], default: '')] $field, $value) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Add value to field without carrying into more significant fields
@link https://secure.php.net/manual/en/intlcalendar.roll.php
@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>
@param mixed $value <p>
The (signed) amount to add to the field, <b>TRUE</b> for rolling up (adding
<em>1</em>), or <b>FALSE</b> for rolling down (subtracting
<em>1</em>).
</p>
@return bool Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.
|
roll
|
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
|
#[TentativeType]
public function PS_UNRESERVE_PREFIX_isSet(#[LanguageAware(['8.0' => 'int'], default: '')] $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 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.
|
PS_UNRESERVE_PREFIX_isSet
|
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
|
#[TentativeType]
public function setTime(#[LanguageAware(['8.0' => 'float'], default: '')] $timestamp) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Set the calendar time in milliseconds since the epoch
@link https://secure.php.net/manual/en/intlcalendar.settime.php
@param float $timestamp <p>
An instant represented by the number of number of milliseconds between
such instant and the epoch, ignoring leap seconds.
</p>
@return bool
Returns <b>TRUE</b> on success and <b>FALSE</b> on failure.
|
setTime
|
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
|
#[TentativeType]
public function setTimeZone($timezone) : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Set the timezone used by this calendar
@link https://secure.php.net/manual/en/intlcalendar.settimezone.php
@param mixed $timezone <p>
The new timezone to be used by this calendar. It can be specified in the
following ways:
</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>
@return bool Returns <b>TRUE</b> on success and <b>FALSE</b> on failure.
|
setTimeZone
|
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]
#[TentativeType]
public function toDateTime() : \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
@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.
|
toDateTime
|
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
|
#[TentativeType]
public static function countEquivalentIDs(#[LanguageAware(['8.0' => 'string'], default: '')] $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 number of IDs or <b>FALSE</b> on failure
|
countEquivalentIDs
|
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
|
#[TentativeType]
public static function createDefault() : \IntlTimeZone
{
}
|
(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
|
createDefault
|
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
|
#[TentativeType]
public static function createEnumeration($countryOrRawOffset) : \IntlIterator|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get an enumeration over time zone IDs associated with the given country or offset
@link https://secure.php.net/manual/en/intltimezone.createenumeration.php
@param mixed $countryOrRawOffset [optional]
@return IntlIterator|false an iterator or <b>FALSE</b> on failure
|
createEnumeration
|
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
|
#[TentativeType]
public static function createTimeZone(#[LanguageAware(['8.0' => 'string'], default: '')] $timezoneId) : ?\IntlTimeZone
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Create a timezone object for the given ID
@link https://secure.php.net/manual/en/intltimezone.createtimezone.php
@param string $timezoneId
@return IntlTimeZone|null a timezone object or <b>NULL</b> on failure
|
createTimeZone
|
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
|
#[TentativeType]
public static function createTimeZoneIDEnumeration(#[LanguageAware(['8.0' => 'int'], default: '')] $type, #[LanguageAware(['8.0' => 'string|null'], default: '')] $region = null, #[LanguageAware(['8.0' => 'int|null'], default: '')] $rawOffset = null) : \IntlIterator|false
{
}
|
(PHP 5 >=5.5.0)<br/>
Get an enumeration over system time zone IDs with the given filter conditions
@link https://secure.php.net/manual/en/intltimezone.createtimezoneidenumeration.php
@param int $type
@param string|null $region [optional]
@param int $rawOffset [optional]
@return IntlIterator|false an iterator or <b>FALSE</b> on failure
|
createTimeZoneIDEnumeration
|
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
|
#[TentativeType]
public static function fromDateTimeZone(#[LanguageAware(['8.0' => 'DateTimeZone'], default: '')] $timezone) : ?\IntlTimeZone
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Create a timezone object from DateTimeZone
@link https://secure.php.net/manual/en/intltimezone.fromdatetimezone.php
@param DateTimeZone $timezone
@return IntlTimeZone|null a timezone object or <b>NULL</b> on failure
|
fromDateTimeZone
|
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
|
#[TentativeType]
public static function getCanonicalID(#[LanguageAware(['8.0' => 'string'], default: '')] $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 the timezone ID or <b>FALSE</b> on failure
|
getCanonicalID
|
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]
#[TentativeType]
public function getDisplayName(#[LanguageAware(['8.0' => 'bool'], default: '')] $dst = \false, #[LanguageAware(['8.0' => 'int'], default: '')] $style = 2, #[LanguageAware(['8.0' => 'string|null'], default: '')] $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 bool $dst [optional]
@param int $style [optional]
@param string $locale [optional]
@return string|false the timezone name or <b>FALSE</b> on failure
|
getDisplayName
|
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]
#[TentativeType]
public function getDSTSavings() : 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
@link https://secure.php.net/manual/en/intltimezone.getequivalentid.php
@return int
|
getDSTSavings
|
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
|
#[TentativeType]
public static function getEquivalentID(#[LanguageAware(['8.0' => 'string'], default: '')] $timezoneId, #[LanguageAware(['8.0' => 'int'], default: '')] $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 the time zone ID or <b>FALSE</b> on failure
|
getEquivalentID
|
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]
#[TentativeType]
public function getErrorCode() : 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
@return int|false
|
getErrorCode
|
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]
#[TentativeType]
public function getErrorMessage() : 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
@return string|false
|
getErrorMessage
|
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
|
#[TentativeType]
public static function 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
|
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]
#[TentativeType]
public function getID() : string|false
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get timezone ID
@return string|false
|
getID
|
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
|
#[TentativeType]
public function getOffset(#[LanguageAware(['8.0' => 'float'], default: '')] $timestamp, #[LanguageAware(['8.0' => 'bool'], default: '')] $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 float $timestamp
moment in time for which to return offsets, in units of milliseconds from
January 1, 1970 0:00 GMT, either GMT time or local wall time, depending on
`local'.
@param bool $local
if true, `date' is local wall time; otherwise it is in GMT time.
@param int &$rawOffset
output parameter to receive the raw offset, that is, the offset not
including DST adjustments
@param int &$dstOffset
output parameter to receive the DST offset, that is, the offset to be added
to `rawOffset' to obtain the total offset between local and GMT time. If
DST is not in effect, this value is zero; otherwise it is a positive value,
typically one hour.
@return bool boolean indication of success
|
getOffset
|
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]
#[TentativeType]
public function getRawOffset() : int
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Get the raw GMT offset (before taking daylight savings time into account
@link https://secure.php.net/manual/en/intltimezone.getrawoffset.php
@return int
|
getRawOffset
|
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
|
#[TentativeType]
public static function getRegion(#[LanguageAware(['8.0' => 'string'], default: '')] $timezoneId) : string|false
{
}
|
(PHP 5 >=5.5.0)<br/>
Get the region code associated with the given system time zone ID
@link https://secure.php.net/manual/en/intltimezone.getregion.php
@param string $timezoneId
@return string|false region or <b>FALSE</b> on failure
|
getRegion
|
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
|
#[TentativeType]
public static function getTZDataVersion() : 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
|
getTZDataVersion
|
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
|
#[TentativeType]
public static function getUnknown() : \IntlTimeZone
{
}
|
(PHP 5 >=5.5.0)<br/>
Get the "unknown" time zone
@link https://secure.php.net/manual/en/intltimezone.getunknown.php
@return IntlTimeZone
|
getUnknown
|
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
|
#[TentativeType]
public static function getWindowsID(string $timezoneId) : string|false
{
}
|
(PHP 7 >=7.1.0)<br/>
Translates a system timezone (e.g. "America/Los_Angeles") into a Windows
timezone (e.g. "Pacific Standard Time").
@link https://secure.php.net/manual/en/intltimezone.getwindowsid.php
@param string $timezoneId
@return string|false the Windows timezone or <b>FALSE</b> on failure
@since 7.1
|
getWindowsID
|
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
|
#[TentativeType]
public static function getIDForWindowsID(string $timezoneId, ?string $region = null) : string|false
{
}
|
@link https://www.php.net/manual/en/intltimezone.getidforwindowsid.php
@param string $timezoneId
@param string|null $region
@return string|false the Windows timezone or <b>FALSE</b> on failure
@since 7.1
|
getIDForWindowsID
|
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]
#[TentativeType]
public function hasSameRules(\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 $other
@return bool
|
hasSameRules
|
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]
#[TentativeType]
public function toDateTimeZone() : \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
@return DateTimeZone|false the DateTimeZone object or <b>FALSE</b> on failure
|
toDateTimeZone
|
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
|
#[TentativeType]
public function useDaylightTime() : bool
{
}
|
(PHP 5 >=5.5.0 PECL intl >= 3.0.0a1)<br/>
Check if this time zone uses daylight savings time
@link https://secure.php.net/manual/en/intltimezone.usedaylighttime.php
@return bool
|
useDaylightTime
|
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 collator_create(string $locale) : ?\Collator
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Create a collator
@link https://php.net/manual/en/collator.create.php
@param string $locale <p>
The locale containing the required collation rules. Special values for
locales can be passed in - if null is passed for the locale, the
default locale collation rules will be used. If empty string ("") or
"root" are passed, UCA rules will be used.
</p>
@return Collator|null Return new instance of <b>Collator</b> object, or <b>NULL</b>
on error.
|
collator_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 collator_compare(\Collator $object, string $string1, string $string2) : int|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Compare two Unicode strings
@link https://php.net/manual/en/collator.compare.php
@param Collator $object
@param string $string1 <p>
The first string to compare.
</p>
@param string $string2 <p>
The second string to compare.
</p>
@return int|false Return comparison result:</p>
<p>
<p>
1 if <i>string1</i> is greater than
<i>string2</i> ;
</p>
<p>
0 if <i>string1</i> is equal to
<i>string2</i>;
</p>
<p>
-1 if <i>string1</i> is less than
<i>string2</i> .
</p>
On error
boolean
<b>FALSE</b>
is returned.
|
collator_compare
|
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 collator_get_attribute(\Collator $object, int $attribute) : int|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get collation attribute value
@link https://php.net/manual/en/collator.getattribute.php
@param Collator $object
@param int $attribute <p>
Attribute to get value for.
</p>
@return int|false Attribute value, or boolean <b>FALSE</b> on error.
|
collator_get_attribute
|
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 collator_get_strength(\Collator $object) : int
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get current collation strength
@link https://php.net/manual/en/collator.getstrength.php
@param Collator $object
@return int current collation strength
|
collator_get_strength
|
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 collator_get_locale(\Collator $object, int $type) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get the locale name of the collator
@link https://php.net/manual/en/collator.getlocale.php
@param Collator $object
@param int $type <p>
You can choose between valid and actual locale (
<b>Locale::VALID_LOCALE</b> and
<b>Locale::ACTUAL_LOCALE</b>,
respectively). The default is the actual locale.
</p>
@return string|false Real locale name from which the collation data comes. If the collator was
instantiated from rules or an error occurred, returns
boolean <b>FALSE</b>.
|
collator_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 collator_get_error_code(\Collator $object) : int|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get collator's last error code
@link https://php.net/manual/en/collator.geterrorcode.php
@param Collator $object
@return int|false Error code returned by the last Collator API function call.
|
collator_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]
function collator_get_error_message(\Collator $object) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get text for collator's last error code
@link https://php.net/manual/en/collator.geterrormessage.php
@param Collator $object
@return string|false Description of an error occurred in the last Collator API function call.
|
collator_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 collator_get_sort_key(\Collator $object, string $string, #[ElementAvailable(from: '5.3', to: '5.6')] $arg3) : string|false
{
}
|
(PHP 5 >= 5.3.2, PHP 7, PECL intl >= 1.0.3)<br/>
Get sorting key for a string
@link https://php.net/manual/en/collator.getsortkey.php
@param Collator $object
@param string $string <p>
The string to produce the key from.
</p>
@return string|false the collation key for the string. Collation keys can be compared directly instead of strings.
|
collator_get_sort_key
|
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 numfmt_create(string $locale, int $style, #[LanguageAware(['8.0' => 'string|null'], default: 'string')] $pattern = null) : ?\NumberFormatter
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Create a number formatter
@link https://php.net/manual/en/numberformatter.create.php
@param string $locale <p>
Locale in which the number would be formatted (locale name, e.g. en_CA).
</p>
@param int $style <p>
Style of the formatting, one of the
format style constants. If
<b>NumberFormatter::PATTERN_DECIMAL</b>
or <b>NumberFormatter::PATTERN_RULEBASED</b>
is passed then the number format is opened using the given pattern,
which must conform to the syntax described in
ICU DecimalFormat
documentation or
ICU RuleBasedNumberFormat
documentation, respectively.
</p>
@param string|null $pattern [optional] <p>
Pattern string if the chosen style requires a pattern.
</p>
@return NumberFormatter|null <b>NumberFormatter</b> object or <b>NULL</b> on error.
|
numfmt_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 numfmt_format(\NumberFormatter $formatter, int|float $num, int $type = 0) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Format a number
@link https://php.net/manual/en/numberformatter.format.php
@param NumberFormatter $formatter
@param int|float $num <p>
The value to format. Can be integer or float,
other values will be converted to a numeric value.
</p>
@param int $type <p>
The
formatting type to use.
</p>
@return string|false the string containing formatted value, or <b>FALSE</b> on error.
|
numfmt_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 numfmt_parse(\NumberFormatter $formatter, string $string, int $type = \NumberFormatter::TYPE_DOUBLE, &$offset = null) : int|float|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Parse a number
@link https://php.net/manual/en/numberformatter.parse.php
@param NumberFormatter $formatter
@param string $string
@param int $type [optional] <p>
The
formatting type to use. By default,
<b>NumberFormatter::TYPE_DOUBLE</b> is used.
</p>
@param int &$offset [optional] <p>
Offset in the string at which to begin parsing. On return, this value
will hold the offset at which parsing ended.
</p>
@return int|float|false The value of the parsed number or <b>FALSE</b> on error.
|
numfmt_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 numfmt_format_currency(\NumberFormatter $formatter, float $amount, string $currency) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Format a currency value
@link https://php.net/manual/en/numberformatter.formatcurrency.php
@param NumberFormatter $formatter
@param float $amount <p>
The numeric currency value.
</p>
@param string $currency <p>
The 3-letter ISO 4217 currency code indicating the currency to use.
</p>
@return string|false String representing the formatted currency value.
|
numfmt_format_currency
|
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 numfmt_get_attribute(\NumberFormatter $formatter, int $attribute) : int|float|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get an attribute
@link https://php.net/manual/en/numberformatter.getattribute.php
@param NumberFormatter $formatter
@param int $attribute <p>
Attribute specifier - one of the
numeric attribute constants.
</p>
@return int|float|false Return attribute value on success, or <b>FALSE</b> on error.
|
numfmt_get_attribute
|
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 numfmt_get_text_attribute(\NumberFormatter $formatter, int $attribute) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get a text attribute
@link https://php.net/manual/en/numberformatter.gettextattribute.php
@param NumberFormatter $formatter
@param int $attribute <p>
Attribute specifier - one of the
text attribute constants.
</p>
@return string|false Return attribute value on success, or <b>FALSE</b> on error.
|
numfmt_get_text_attribute
|
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 numfmt_get_symbol(\NumberFormatter $formatter, int $symbol) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get a symbol value
@link https://php.net/manual/en/numberformatter.getsymbol.php
@param NumberFormatter $formatter
@param int $symbol <p>
Symbol specifier, one of the
format symbol constants.
</p>
@return string|false The symbol string or <b>FALSE</b> on error.
|
numfmt_get_symbol
|
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 numfmt_get_pattern(\NumberFormatter $formatter) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get formatter pattern
@link https://php.net/manual/en/numberformatter.getpattern.php
@param NumberFormatter $formatter
@return string|false Pattern string that is used by the formatter, or <b>FALSE</b> if an error happens.
|
numfmt_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 numfmt_get_locale(\NumberFormatter $formatter, int $type = 0) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get formatter locale
@link https://php.net/manual/en/numberformatter.getlocale.php
@param NumberFormatter $formatter
@param int $type <p>
You can choose between valid and actual locale (
<b>Locale::VALID_LOCALE</b>,
<b>Locale::ACTUAL_LOCALE</b>,
respectively). The default is the actual locale.
</p>
@return string|false The locale name used to create the formatter.
|
numfmt_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 numfmt_get_error_code(\NumberFormatter $formatter) : int
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get formatter's last error code.
@link https://php.net/manual/en/numberformatter.geterrorcode.php
@param NumberFormatter $formatter
@return int error code from last formatter call.
|
numfmt_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 numfmt_get_error_message(\NumberFormatter $formatter) : string
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Get formatter's last error message.
@link https://php.net/manual/en/numberformatter.geterrormessage.php
@param NumberFormatter $formatter
@return string error message from last formatter call.
|
numfmt_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 normalizer_normalize(string $string, int $form = \Normalizer::FORM_C) : string|false
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Normalizes the input provided and returns the normalized string
@link https://php.net/manual/en/normalizer.normalize.php
@param string $string <p>The input string to normalize</p>
@param int $form [optional] <p>One of the normalization forms.</p>
@return string|false The normalized string or <b>FALSE</b> if an error occurred.
|
normalizer_normalize
|
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 normalizer_is_normalized(string $string, int $form = \Normalizer::FORM_C) : bool
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Checks if the provided string is already in the specified normalization
form.
@link https://php.net/manual/en/normalizer.isnormalized.php
@param string $string <p>The input string to normalize</p>
@param int $form [optional] <p>
One of the normalization forms.
</p>
@return bool <b>TRUE</b> if normalized, <b>FALSE</b> otherwise or if there an error
|
normalizer_is_normalized
|
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_default() : string
{
}
|
Gets the default locale value from the intl global 'default_locale'
@link https://php.net/manual/en/function.locale-get-default.php
@return string a string with the current Locale.
|
locale_get_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 locale_get_primary_language(string $locale) : ?string
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Gets the primary language for the input locale
@link https://php.net/manual/en/locale.getprimarylanguage.php
@param string $locale <p>
The locale to extract the primary language code from
</p>
@return string|null The language code associated with the language or <b>NULL</b> in case of error.
|
locale_get_primary_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_script(string $locale) : ?string
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Gets the script for the input locale
@link https://php.net/manual/en/locale.getscript.php
@param string $locale <p>
The locale to extract the script code from
</p>
@return string|null The script subtag for the locale or <b>NULL</b> if not present
|
locale_get_script
|
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_region(string $locale) : ?string
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Gets the region for the input locale
@link https://php.net/manual/en/locale.getregion.php
@param string $locale <p>
The locale to extract the region code from
</p>
@return string|null The region subtag for the locale or <b>NULL</b> if not present
|
locale_get_region
|
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_keywords(string $locale) : array|false|null
{
}
|
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)<br/>
Gets the keywords for the input locale
@link https://php.net/manual/en/locale.getkeywords.php
@param string $locale <p>
The locale to extract the keywords from
</p>
@return array|false|null Associative array containing the keyword-value pairs for this locale
|
locale_get_keywords
|
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_script(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 script of the input locale
@link https://php.net/manual/en/locale.getdisplayscript.php
@param string $locale <p>
The locale to return a display script for
</p>
@param string|null $displayLocale <p>
Optional format locale to use to display the script name
</p>
@return string|false Display name of the script for the $locale in the format appropriate for
$in_locale.
|
locale_get_display_script
|
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_region(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 region of the input locale
@link https://php.net/manual/en/locale.getdisplayregion.php
@param string $locale <p>
The locale to return a display region for.
</p>
@param string|null $displayLocale <p>
Optional format locale to use to display the region name
</p>
@return string|false display name of the region for the $locale in the format appropriate for
$in_locale.
|
locale_get_display_region
|
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_name(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 the input locale
@link https://php.net/manual/en/locale.getdisplayname.php
@param string $locale <p>
The locale to return a display name for.
</p>
@param string|null $displayLocale <p>optional format locale</p>
@return string|false Display name of the locale in the format appropriate for $in_locale.
|
locale_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
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.