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 |
---|---|---|---|---|---|---|---|
#[TentativeType]
public static function iscntrl(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is a control character
@link https://php.net/manual/en/intlchar.iscntrl.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is a control character, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
iscntrl
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isdefined(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check whether the code point is defined
@link https://php.net/manual/en/intlchar.isdefined.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is a defined character, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isdefined
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isdigit(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is a digit character
@link https://php.net/manual/en/intlchar.isdigit.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is a digit character, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isdigit
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isgraph(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is a graphic character
@link https://php.net/manual/en/intlchar.isgraph.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is a "graphic" character, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isgraph
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isIDIgnorable(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is an ignorable character
@link https://php.net/manual/en/intlchar.isidignorable.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is ignorable in identifiers, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isIDIgnorable
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isIDPart(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is permissible in an identifier
@link https://php.net/manual/en/intlchar.isidpart.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is the code point may occur in an identifier, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isIDPart
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isIDStart(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is permissible as the first character in an identifier
@link https://php.net/manual/en/intlchar.isidstart.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint may start an identifier, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isIDStart
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isISOControl(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is an ISO control code
@link https://php.net/manual/en/intlchar.isisocontrol.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is an ISO control code, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isISOControl
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isJavaIDPart(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is permissible in a Java identifier
@link https://php.net/manual/en/intlchar.isjavaidpart.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint may occur in a Java identifier, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isJavaIDPart
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isJavaIDStart(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is permissible as the first character in a Java identifier
@link https://php.net/manual/en/intlchar.isjavaidstart.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint may start a Java identifier, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isJavaIDStart
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isJavaSpaceChar(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is a space character according to Java
@link https://php.net/manual/en/intlchar.isjavaspacechar.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is a space character according to Java, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isJavaSpaceChar
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function islower(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is a lowercase letter
@link https://php.net/manual/en/intlchar.islower.php
@param int|string $codepoint <p>The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN),
or the character encoded as a UTF-8 string (e.g. "\u{2603}")</p>
@return bool|null Returns TRUE if codepoint is an Ll lowercase letter, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
islower
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isMirrored(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point has the Bidi_Mirrored property
@link https://php.net/manual/en/intlchar.ismirrored.php
@param int|string $codepoint <p>The integer codepoint value (e.g. <em>0x2603</em> for <em>U+2603 SNOWMAN</em>), or the character encoded as a UTF-8 string (e.g. <em>"\u{2603}"</em>)</p>
@return bool|null Returns TRUE if codepoint has the Bidi_Mirrored property, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isMirrored
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isprint(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is a printable character
@link https://php.net/manual/en/intlchar.isprint.php
@param int|string $codepoint <p>The integer codepoint value (e.g. <em>0x2603</em> for <em>U+2603 SNOWMAN</em>), or the character encoded as a UTF-8 string (e.g. <em>"\u{2603}"</em>)</p>
@return bool|null Returns TRUE if codepoint is a printable character, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isprint
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function ispunct(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is punctuation character
@link https://php.net/manual/en/intlchar.ispunct.php
@param int|string $codepoint <p>The integer codepoint value (e.g. <em>0x2603</em> for <em>U+2603 SNOWMAN</em>),
or the character encoded as a UTF-8 string (e.g. <em>"\u{2603}"</em>)</p>
@return bool|null Returns TRUE if codepoint is a punctuation character, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
ispunct
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isspace(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is a space character
@link https://php.net/manual/en/intlchar.isspace.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is a space character, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isspace
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function istitle(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is a titlecase letter
@link https://php.net/manual/en/intlchar.istitle.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is a titlecase letter, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
istitle
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isUAlphabetic(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point has the Alphabetic Unicode property
@link https://php.net/manual/en/intlchar.isualphabetic.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint has the Alphabetic Unicode property, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isUAlphabetic
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isULowercase(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point has the Lowercase Unicode property
@link https://php.net/manual/en/intlchar.isulowercase.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint has the Lowercase Unicode property, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isULowercase
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isupper(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point has the general category "Lu" (uppercase letter)
@link https://php.net/manual/en/intlchar.isupper.php
@param int|string $codepoint <p>The integer codepoint value (e.g. <em>0x2603</em> for <em>U+2603 SNOWMAN</em>),
or the character encoded as a UTF-8 string (e.g. <em>"\u{2603}"</em>)</p>
@return bool|null Returns TRUE if codepoint is an Lu uppercase letter, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isupper
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isUUppercase(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point has the Uppercase Unicode property
@link https://php.net/manual/en/intlchar.isuuppercase.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint has the Uppercase Unicode property, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isUUppercase
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isUWhiteSpace(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point has the White_Space Unicode property
@link https://php.net/manual/en/intlchar.isuwhitespace.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint has the White_Space Unicode property, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isUWhiteSpace
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isWhitespace(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is a whitespace character according to ICU
@link https://php.net/manual/en/intlchar.iswhitespace.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is a whitespace character according to ICU, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isWhitespace
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function isxdigit(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : ?bool
{
}
|
Check if code point is a hexadecimal digit
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return bool|null Returns TRUE if codepoint is a hexadecimal character, FALSE if not, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
isxdigit
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function ord(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $character) : ?int
{
}
|
Return Unicode code point value of character
@link https://php.net/manual/en/intlchar.ord.php
@param int|string $character <p>A Unicode character.</p>
@return int|null Returns the Unicode code point value as an integer, NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
ord
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function tolower(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : string|int|null
{
}
|
Make Unicode character lowercase
@link https://php.net/manual/en/intlchar.tolower.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return int|string|null Returns the Simple_Lowercase_Mapping of the code point, if any; otherwise the code point itself.
The return type will be integer unless the code point was passed as a UTF-8 string, in which case a string will be returned.
Or NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
tolower
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function totitle(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : string|int|null
{
}
|
Make Unicode character titlecase
@link https://php.net/manual/en/intlchar.totitle.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return int|string|null Returns the Simple_Titlecase_Mapping of the code point, if any; otherwise the code point itself.
The return type will be integer unless the code point was passed as a UTF-8 string, in which case a string will be returned.
Or NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
totitle
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[TentativeType]
public static function toupper(#[LanguageLevelTypeAware(['8.0' => 'int|string'], default: '')] $codepoint) : string|int|null
{
}
|
Make Unicode character uppercase
@link https://php.net/manual/en/intlchar.toupper.php
@param int|string $codepoint The integer codepoint value (e.g. 0x2603 for U+2603 SNOWMAN), or the character encoded as a UTF-8 string (e.g. "\u{2603}")
@return int|string|null Returns the Simple_Uppercase_Mapping of the code point, if any; otherwise the code point itself.
The return type will be integer unless the code point was passed as a UTF-8 string, in which case a string will be returned.
Or NULL if <em>codepoint</em> is out of bound.
@since 7.0
|
toupper
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/intl/IntlChar.php
|
MIT
|
#[Pure]
public function __construct($depth, $options)
{
}
|
@param int $depth [optional]
@param int $options [optional]
|
__construct
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/json/json.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/json/json.php
|
MIT
|
#[Pure(\true)]
function json_last_error() : int
{
}
|
Returns the last error occurred
@link https://php.net/manual/en/function.json-last-error.php
@return int an integer, the value can be one of the following
constants:
<table class='doctable table'>
<thead>
<tr>
<th>Constant</th>
<th>Meaning</th>
<th>Availability</th>
</tr>
</thead>
<tbody class='tbody'>
<tr>
<td><strong><code>JSON_ERROR_NONE</code></strong></td>
<td>No error has occurred</td>
<td class='empty'> </td>
</tr>
<tr>
<td><strong><code>JSON_ERROR_DEPTH</code></strong></td>
<td>The maximum stack depth has been exceeded</td>
<td class='empty'> </td>
</tr>
<tr>
<td><strong><code>JSON_ERROR_STATE_MISMATCH</code></strong></td>
<td>Invalid or malformed JSON</td>
<td class='empty'> </td>
</tr>
<tr>
<td><strong><code>JSON_ERROR_CTRL_CHAR</code></strong></td>
<td>Control character error, possibly incorrectly encoded</td>
<td class='empty'> </td>
</tr>
<tr>
<td><strong><code>JSON_ERROR_SYNTAX</code></strong></td>
<td>Syntax error</td>
<td class='empty'> </td>
</tr>
<tr>
<td><strong><code>JSON_ERROR_UTF8</code></strong></td>
<td>Malformed UTF-8 characters, possibly incorrectly encoded</td>
<td>PHP 5.3.3</td>
</tr>
<tr>
<td><strong><code>JSON_ERROR_RECURSION</code></strong></td>
<td>One or more recursive references in the value to be encoded</td>
<td>PHP 5.5.0</td>
</tr>
<tr>
<td><strong><code>JSON_ERROR_INF_OR_NAN</code></strong></td>
<td>
One or more
<a href='language.types.float.php#language.types.float.nan' class='link'><strong><code>NAN</code></strong></a>
or <a href='function.is-infinite.php' class='link'><strong><code>INF</code></strong></a>
values in the value to be encoded
</td>
<td>PHP 5.5.0</td>
</tr>
<tr>
<td><strong><code>JSON_ERROR_UNSUPPORTED_TYPE</code></strong></td>
<td>A value of a type that cannot be encoded was given</td>
<td>PHP 5.5.0</td>
</tr>
<tr>
<td><strong><code>JSON_ERROR_INVALID_PROPERTY_NAME</code></strong></td>
<td>A property name that cannot be encoded was given</td>
<td>PHP 7.0.0</td>
</tr>
<tr>
<td><strong><code>JSON_ERROR_UTF16</code></strong></td>
<td>Malformed UTF-16 characters, possibly incorrectly encoded</td>
<td>PHP 7.0.0</td>
</tr>
</tbody>
</table>
|
json_last_error
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/json/json.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/json/json.php
|
MIT
|
#[Pure]
function json_last_error_msg() : string
{
}
|
Returns the error string of the last json_encode() or json_decode() call, which did not specify <b>JSON_THROW_ON_ERROR</b>.
@link https://php.net/manual/en/function.json-last-error-msg.php
@return string Returns the error message on success, "No error" if no error has occurred.
@since 5.5
|
json_last_error_msg
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/json/json.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/json/json.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\Result|bool'], default: 'resource|bool')]
function ldap_exop(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, string $request_oid, ?string $request_data, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null, &$response_data, &$response_oid)
{
}
|
Performs an extended operation on the specified link with reqoid the OID of the operation and reqdata the data.
@link https://www.php.net/manual/en/function.ldap-exop.php
@param resource $ldap An LDAP link identifier, returned by ldap_connect().
@param string $request_oid The extended operation request OID. You may use one of LDAP_EXOP_START_TLS, LDAP_EXOP_MODIFY_PASSWD, LDAP_EXOP_REFRESH, LDAP_EXOP_WHO_AM_I, LDAP_EXOP_TURN, or a string with the OID of the operation you want to send.
@param string|null $request_data [optional] The extended operation request data. May be NULL for some operations like LDAP_EXOP_WHO_AM_I, may also need to be BER encoded.
@param array|null $controls If provided, a password policy request control is send with the request and this is filled with an array of LDAP Controls returned with the request.
@param string &$response_data [optional] Will be filled with the extended operation response data if provided. If not provided you may use ldap_parse_exop on the result object later to get this data.
@param string &$response_oid [optional] Will be filled with the response OID if provided, usually equal to the request OID.
@return resource|bool When used with retdata, returns TRUE on success or FALSE on error. When used without retdata, returns a result identifier or FALSE on error.
@since 7.2
|
ldap_exop
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\Connection|false'], default: 'resource|false')]
function ldap_connect(?string $uri, int $port = 389)
{
}
|
Connect to an LDAP server
@link https://php.net/manual/en/function.ldap-connect.php
@param string|null $uri [optional] <p>
If you are using OpenLDAP 2.x.x you can specify a URL instead of the
hostname. To use LDAP with SSL, compile OpenLDAP 2.x.x with SSL
support, configure PHP with SSL, and set this parameter as
ldaps://hostname/.
</p>
@param int $port [optional] <p>
The port to connect to. Not used when using URLs.
</p>
@return resource|false a positive LDAP link identifier on success, or <b>FALSE</b> on error.
When OpenLDAP 2.x.x is used, <b>ldap_connect</b> will always
return a resource as it does not actually connect but just
initializes the connecting parameters. The actual connect happens with
the next calls to ldap_* funcs, usually with
<b>ldap_bind</b>.
</p>
<p>
If no arguments are specified then the link identifier of the already
opened link will be returned.
|
ldap_connect
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\Result|false'], default: 'resource|false')]
function ldap_bind_ext(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, ?string $dn, ?string $password, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null)
{
}
|
Bind to LDAP directory
Does the same thing as ldap_bind() but returns the LDAP result resource to be parsed with ldap_parse_result().
@link https://php.net/manual/en/function.ldap-bind.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param string|null $dn [optional]
@param string|null $password [optional]
@param array|null $controls Array of LDAP Controls to send with the request.
@return resource|false
@since 7.3
|
ldap_bind_ext
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(["8.0" => "int"], default: "int|false")]
function ldap_count_entries(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Result'], default: 'resource')] $result)
{
}
|
Count the number of entries in a search
@link https://php.net/manual/en/function.ldap-count-entries.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param resource $result <p>
The internal LDAP result.
</p>
@return int|false number of entries in the result or <b>FALSE</b> on error.
|
ldap_count_entries
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\ResultEntry|false'], default: 'resource|false')]
function ldap_first_entry(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Result'], default: 'resource')] $result)
{
}
|
Return first result id
@link https://php.net/manual/en/function.ldap-first-entry.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param resource $result
@return resource|false the result entry identifier for the first entry on success and
<b>FALSE</b> on error.
|
ldap_first_entry
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\ResultEntry|false'], default: 'resource|false')]
function ldap_next_entry(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\ResultEntry'], default: 'resource')] $entry)
{
}
|
Get next result entry
@link https://php.net/manual/en/function.ldap-next-entry.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param resource $entry
@return resource|false entry identifier for the next entry in the result whose entries
are being read starting with <b>ldap_first_entry</b>. If
there are no more entries in the result then it returns <b>FALSE</b>.
|
ldap_next_entry
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[ArrayShape(["count" => "int"])]
function ldap_explode_dn(string $dn, int $with_attrib) : array|false
{
}
|
Splits DN into its component parts
@link https://php.net/manual/en/function.ldap-explode-dn.php
@param string $dn <p>
The distinguished name of an LDAP entity.
</p>
@param int $with_attrib <p>
Used to request if the RDNs are returned with only values or their
attributes as well. To get RDNs with the attributes (i.e. in
attribute=value format) set <i>with_attrib</i> to 0
and to get only values set it to 1.
</p>
@return array|false an array of all DN components.
The first element in this array has count key and
represents the number of returned values, next elements are numerically
indexed DN components.
|
ldap_explode_dn
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\Result|false'], default: 'resource|false')]
function ldap_add_ext(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null)
{
}
|
Add entries to LDAP directory
Does the same thing as ldap_add() but returns the LDAP result resource to be parsed with ldap_parse_result().
@link https://www.php.net/manual/en/function.ldap-add-ext.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param string $dn <p>
The distinguished name of an LDAP entity.
</p>
@param array $entry <p>
An array that specifies the information about the entry. The values in
the entries are indexed by individual attributes.
In case of multiple values for an attribute, they are indexed using
integers starting with 0.
<code>
$entree["attribut1"] = "value";
$entree["attribut2"][0] = "value1";
$entree["attribut2"][1] = "value2";
</code>
</p>
@param array|null $controls Array of LDAP Controls to send with the request.
@return resource|false
@since 7.3
|
ldap_add_ext
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\Result|false'], default: 'resource|false')]
function ldap_delete_ext(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, string $dn, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null)
{
}
|
Delete an entry from a directory
Does the same thing as ldap_delete() but returns the LDAP result resource to be parsed with ldap_parse_result().
@link https://php.net/manual/en/function.ldap-delete-ext.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param string $dn <p>
The distinguished name of an LDAP entity.
</p>
@param array|null $controls Array of LDAP Controls to send with the request.
@return resource|false
@since 7.3
|
ldap_delete_ext
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\Result|false'], default: 'resource|false')]
function ldap_mod_add_ext(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null)
{
}
|
Add attribute values to current attributes
Does the same thing as ldap_mod_add() but returns the LDAP result resource to be parsed with ldap_parse_result().
@link https://php.net/manual/en/function.ldap-mod-add-ext.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param string $dn <p>
The distinguished name of an LDAP entity.
</p>
@param array $entry
@param array|null $controls Array of LDAP Controls to send with the request.
@return resource|false
@since 7.3
|
ldap_mod_add_ext
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\Result|false'], default: 'resource|false')]
function ldap_mod_replace_ext(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null)
{
}
|
Replace attribute values with new ones
Does the same thing as ldap_mod_replace() but returns the LDAP result resource to be parsed with ldap_parse_result().
@link https://php.net/manual/en/function.ldap-mod-replace-ext.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param string $dn <p>
The distinguished name of an LDAP entity.
</p>
@param array $entry
@param array|null $controls Array of LDAP Controls to send with the request.
@return resource|false
@since 7.3
|
ldap_mod_replace_ext
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\Result|false'], default: 'resource|false')]
function ldap_mod_del_ext(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, string $dn, array $entry, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null)
{
}
|
Delete attribute values from current attributes
Does the same thing as ldap_mod_del() but returns the LDAP result resource to be parsed with ldap_parse_result().
@link https://php.net/manual/en/function.ldap-mod-del-ext.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param string $dn <p>
The distinguished name of an LDAP entity.
</p>
@param array $entry
@param array|null $controls Array of LDAP Controls to send with the request.
@return resource|false
@since 7.3
|
ldap_mod_del_ext
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[Deprecated(since: "7.0")]
function ldap_sort(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, $result, string $sortfilter) : bool
{
}
|
Sort LDAP result entries
@link https://php.net/manual/en/function.ldap-sort.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param resource $result <p>
An search result identifier, returned by
<b>ldap_search</b>.
</p>
@param string $sortfilter <p>
The attribute to use as a key in the sort.
</p>
@removed 8.0
@return bool
|
ldap_sort
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\Result|false'], default: 'resource|false')]
function ldap_rename_ext(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, string $dn, string $new_rdn, string $new_parent, bool $delete_old_rdn, #[PhpVersionAware(["8.0" => "null|array"], default: "array")] $controls = null)
{
}
|
Modify the name of an entry
Does the same thing as ldap_rename() but returns the LDAP result resource to be parsed with ldap_parse_result().
@link https://php.net/manual/en/function.ldap-rename-ext.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param string $dn <p>
The distinguished name of an LDAP entity.
</p>
@param string $new_rdn <p>
The new RDN.
</p>
@param string $new_parent <p>
The new parent/superior entry.
</p>
@param bool $delete_old_rdn <p>
If <b>TRUE</b> the old RDN value(s) is removed, else the old RDN value(s)
is retained as non-distinguished values of the entry.
</p>
@param array|null $controls Array of LDAP Controls to send with the request.
@return resource|false
@since 7.3
|
ldap_rename_ext
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\ResultEntry|false'], default: 'resource')]
function ldap_first_reference(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Result'], default: 'resource')] $result)
{
}
|
Return first reference
@link https://php.net/manual/en/function.ldap-first-reference.php
@param resource $ldap
@param resource $result
@return resource
|
ldap_first_reference
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[PhpVersionAware(['8.1' => 'LDAP\\ResultEntry|false'], default: 'resource')]
function ldap_next_reference(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, #[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\ResultEntry'], default: 'resource')] $entry)
{
}
|
Get next reference
@link https://php.net/manual/en/function.ldap-next-reference.php
@param resource $ldap
@param resource $entry
@return resource
|
ldap_next_reference
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[Deprecated(since: "7.4")]
function ldap_control_paged_result(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, int $pagesize, $iscritical = \false, $cookie = "") : bool
{
}
|
Send LDAP pagination control
@link https://php.net/manual/en/function.ldap-control-paged-result.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param int $pagesize <p>
The number of entries by page.
</p>
@param bool $iscritical [optional] <p>
Indicates whether the pagination is critical of not.
If true and if the server doesn't support pagination, the search
will return no result.
</p>
@param string $cookie [optional] <p>
An opaque structure sent by the server
(<b>ldap_control_paged_result_response</b>).
</p>
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@since 5.4
@removed 8.0
|
ldap_control_paged_result
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
#[Deprecated(since: "7.4")]
function ldap_control_paged_result_response(#[PhpVersionAware(['8.1' => 'DEPTRAC_INTERNAL\\LDAP\\Connection'], default: 'resource')] $ldap, $result, &$cookie = null, &$estimated = null) : bool
{
}
|
Retrieve the LDAP pagination cookie
@link https://php.net/manual/en/function.ldap-control-paged-result-response.php
@param resource $ldap <p>
An LDAP link identifier, returned by <b>ldap_connect</b>.
</p>
@param resource $result
@param string &$cookie [optional] <p>
An opaque structure sent by the server.
</p>
@param int &$estimated [optional] <p>
The estimated number of entries to retrieve.
</p>
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@since 5.4
@removed 8.0
|
ldap_control_paged_result_response
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/ldap/ldap.php
|
MIT
|
public function __construct($name, array $options = [
'create_if_missing' => \true,
// if the specified database does not exist will create a new one
'error_if_exists' => \false,
// if the opened database exists will throw exception
'paranoid_checks' => \false,
'block_cache_size' => 8 * (2 << 20),
'write_buffer_size' => 4 << 20,
'block_size' => 4096,
'max_open_files' => 1000,
'block_restart_interval' => 16,
'compression' => \LEVELDB_SNAPPY_COMPRESSION,
'comparator' => null,
], array $read_options = [
'verify_check_sum' => \false,
//may be set to true to force checksum verification of all data that is read from the file system on behalf of a particular read. By default, no such verification is done.
'fill_cache' => \true,
], array $write_options = [
//Only one element named sync in the write option array. By default, each write to leveldb is asynchronous.
'sync' => \false,
])
{
}
|
@param string $name Path to database
@param array $options
@param array $read_options
@param array $write_options
|
__construct
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/leveldb/LevelDB.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/leveldb/LevelDB.php
|
MIT
|
#[Pure(\true)]
function libxml_get_last_error() : \LibXMLError|false
{
}
|
Retrieve last error from libxml
@link https://php.net/manual/en/function.libxml-get-last-error.php
@return LibXMLError|false a LibXMLError object if there is any error in the
buffer, <b>FALSE</b> otherwise.
|
libxml_get_last_error
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/libxml/libxml.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/libxml/libxml.php
|
MIT
|
#[Pure(\true)]
function libxml_get_errors() : array
{
}
|
Retrieve array of errors
@link https://php.net/manual/en/function.libxml-get-errors.php
@return LibXMLError[] an array with LibXMLError objects if there are any
errors in the buffer, or an empty array otherwise.
|
libxml_get_errors
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/libxml/libxml.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/libxml/libxml.php
|
MIT
|
#[Deprecated(since: "8.0")]
function libxml_disable_entity_loader(bool $disable = \true) : bool
{
}
|
Disable the ability to load external entities
@link https://php.net/manual/en/function.libxml-disable-entity-loader.php
@param bool $disable [optional] <p>
Disable (<b>TRUE</b>) or enable (<b>FALSE</b>) libxml extensions (such as
,
and ) to load external entities.
</p>
@return bool the previous value.
@since 5.2.11
|
libxml_disable_entity_loader
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/libxml/libxml.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/libxml/libxml.php
|
MIT
|
#[Pure]
function mb_convert_case(string $string, int $mode, ?string $encoding) : string
{
}
|
Perform case folding on a string
@link https://php.net/manual/en/function.mb-convert-case.php
@param string $string <p>
The string being converted.
</p>
@param int $mode <p>
The mode of the conversion. It can be one of
MB_CASE_UPPER,
MB_CASE_LOWER, or
MB_CASE_TITLE.
</p>
@param string|null $encoding [optional]
@return string A case folded version of string converted in the
way specified by mode.
|
mb_convert_case
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_strtoupper(string $string, ?string $encoding) : string
{
}
|
Make a string uppercase
@link https://php.net/manual/en/function.mb-strtoupper.php
@param string $string <p>
The string being uppercased.
</p>
@param string|null $encoding [optional]
@return string str with all alphabetic characters converted to uppercase.
|
mb_strtoupper
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_strtolower(string $string, ?string $encoding) : string
{
}
|
Make a string lowercase
@link https://php.net/manual/en/function.mb-strtolower.php
@param string $string <p>
The string being lowercased.
</p>
@param string|null $encoding [optional]
@return string str with all alphabetic characters converted to lowercase.
|
mb_strtolower
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[PhpStormStubsElementAvailable(from: '5.3', to: '7.4')]
function mb_parse_str(string $string, &$result) : bool
{
}
|
Parse GET/POST/COOKIE data and set global variable
@link https://php.net/manual/en/function.mb-parse-str.php
@param string $string <p>
The URL encoded data.
</p>
@param array &$result [optional] <p>
An array containing decoded and character encoded converted values.
</p>
@return bool true on success or false on failure.
|
mb_parse_str
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[PhpStormStubsElementAvailable(from: '8.0')]
function mb_parse_str(string $string, &$result) : bool
{
}
|
Parse GET/POST/COOKIE data and set global variable
@link https://php.net/manual/en/function.mb-parse-str.php
@param string $string <p>
The URL encoded data.
</p>
@param array &$result <p>
An array containing decoded and character encoded converted values.
</p>
@return bool true on success or false on failure.
|
mb_parse_str
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_output_handler(string $string, int $status) : string
{
}
|
Callback function converts character encoding in output buffer
@link https://php.net/manual/en/function.mb-output-handler.php
@param string $string <p>
The contents of the output buffer.
</p>
@param int $status <p>
The status of the output buffer.
</p>
@return string The converted string.
|
mb_output_handler
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_preferred_mime_name(string $encoding) : string|false
{
}
|
Get MIME charset string
@link https://php.net/manual/en/function.mb-preferred-mime-name.php
@param string $encoding <p>
The encoding being checked.
</p>
@return string|false The MIME charset string for character encoding
encoding.
|
mb_preferred_mime_name
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
#[LanguageLevelTypeAware(['8.0' => 'int'], default: 'int|false')]
function mb_strlen(string $string, #[LanguageLevelTypeAware(['8.0' => 'string|null'], default: 'string')] $encoding)
{
}
|
Get string length
@link https://php.net/manual/en/function.mb-strlen.php
@param string $string <p>
The string being checked for length.
</p>
@param string|null $encoding [optional]
@return int|false the number of characters in
string str having character encoding
encoding. A multi-byte character is
counted as 1.
|
mb_strlen
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_strpos(string $haystack, string $needle, int $offset = 0, ?string $encoding) : int|false
{
}
|
Find position of first occurrence of string in a string
@link https://php.net/manual/en/function.mb-strpos.php
@param string $haystack <p>
The string being checked.
</p>
@param string $needle <p>
The position counted from the beginning of haystack.
</p>
@param int<0,max> $offset [optional] <p>
The search offset. If it is not specified, 0 is used.
</p>
@param string|null $encoding [optional]
@return int<0,max>|false the numeric position of
the first occurrence of needle in the
haystack string. If
needle is not found, it returns false.
|
mb_strpos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_strrpos(string $haystack, string $needle, int $offset = 0, ?string $encoding) : int|false
{
}
|
Find position of last occurrence of a string in a string
@link https://php.net/manual/en/function.mb-strrpos.php
@param string $haystack <p>
The string being checked, for the last occurrence
of needle
</p>
@param string $needle <p>
The string to find in haystack.
</p>
@param int $offset [optional] May be specified to begin searching an arbitrary number of characters into
the string. Negative values will stop searching at an arbitrary point
prior to the end of the string.
@param string|null $encoding [optional]
@return int|false the numeric position of
the last occurrence of needle in the
haystack string. If
needle is not found, it returns false.
|
mb_strrpos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_substr_count(string $haystack, string $needle, ?string $encoding) : int
{
}
|
Count the number of substring occurrences
@link https://php.net/manual/en/function.mb-substr-count.php
@param string $haystack <p>
The string being checked.
</p>
@param string $needle <p>
The string being found.
</p>
@param string|null $encoding [optional]
@return int The number of times the
needle substring occurs in the
haystack string.
|
mb_substr_count
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_substr(string $string, int $start, ?int $length, ?string $encoding) : string
{
}
|
Get part of string
@link https://php.net/manual/en/function.mb-substr.php
@param string $string <p>
The string being checked.
</p>
@param int $start <p>
The first position used in str.
</p>
@param int|null $length [optional] <p>
The maximum length of the returned string.
</p>
@param string|null $encoding [optional]
@return string mb_substr returns the portion of
str specified by the
start and
length parameters.
|
mb_substr
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_strcut(string $string, int $start, ?int $length, ?string $encoding) : string
{
}
|
Get part of string
@link https://php.net/manual/en/function.mb-strcut.php
@param string $string <p>
The string being cut.
</p>
@param int $start <p>
The position that begins the cut.
</p>
@param int|null $length [optional] <p>
The string being decoded.
</p>
@param string|null $encoding [optional]
@return string mb_strcut returns the portion of
str specified by the
start and
length parameters.
|
mb_strcut
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_strwidth(string $string, ?string $encoding) : int
{
}
|
Return width of string
@link https://php.net/manual/en/function.mb-strwidth.php
@param string $string <p>
The string being decoded.
</p>
@param string|null $encoding [optional]
@return int The width of string str.
|
mb_strwidth
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_strimwidth(string $string, int $start, int $width, string $trim_marker = '', ?string $encoding) : string
{
}
|
Get truncated string with specified width
@link https://php.net/manual/en/function.mb-strimwidth.php
@param string $string <p>
The string being decoded.
</p>
@param int $start <p>
The start position offset. Number of
characters from the beginning of string. (First character is 0)
</p>
@param int $width <p>
The width of the desired trim.
</p>
@param string $trim_marker <p>
A string that is added to the end of string
when string is truncated.
</p>
@param string|null $encoding [optional]
@return string The truncated string. If trimmarker is set,
trimmarker is appended to the return value.
|
mb_strimwidth
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_convert_encoding(array|string $string, string $to_encoding, array|string|null $from_encoding = null) : array|string|false
{
}
|
Convert character encoding
@link https://php.net/manual/en/function.mb-convert-encoding.php
@param string|array $string <p>
The string being encoded.
</p>
@param string $to_encoding <p>
The type of encoding that str is being converted to.
</p>
@param string|string[]|null $from_encoding [optional] <p>
Is specified by character code names before conversion. It is either
an array, or a comma separated enumerated list.
If from_encoding is not specified, the internal
encoding will be used.
</p>
<p>
"auto" may be used, which expands to
"ASCII,JIS,UTF-8,EUC-JP,SJIS".
</p>
@return array|string|false The encoded string.
|
mb_convert_encoding
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_list_encodings() : array
{
}
|
Returns an array of all supported encodings
@link https://php.net/manual/en/function.mb-list-encodings.php
@return string[] a numerically indexed array.
|
mb_list_encodings
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
#[LanguageLevelTypeAware(["8.0" => "array"], default: "array|false")]
function mb_encoding_aliases(string $encoding)
{
}
|
Get aliases of a known encoding type
@param string $encoding The encoding type being checked, for aliases.
@return string[]|false a numerically indexed array of encoding aliases on success, or FALSE on failure
@link https://php.net/manual/en/function.mb-encoding-aliases.php
|
mb_encoding_aliases
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_convert_kana(string $string, string $mode = 'KV', ?string $encoding) : string
{
}
|
Convert "kana" one from another ("zen-kaku", "han-kaku" and more)
@link https://php.net/manual/en/function.mb-convert-kana.php
@param string $string <p>
The string being converted.
</p>
@param string $mode [optional] <p>
The conversion option.
</p>
<p>
Specify with a combination of following options.
<table>
Applicable Conversion Options
<tr valign="top">
<td>Option</td>
<td>Meaning</td>
</tr>
<tr valign="top">
<td>r</td>
<td>
Convert "zen-kaku" alphabets to "han-kaku"
</td>
</tr>
<tr valign="top">
<td>R</td>
<td>
Convert "han-kaku" alphabets to "zen-kaku"
</td>
</tr>
<tr valign="top">
<td>n</td>
<td>
Convert "zen-kaku" numbers to "han-kaku"
</td>
</tr>
<tr valign="top">
<td>N</td>
<td>
Convert "han-kaku" numbers to "zen-kaku"
</td>
</tr>
<tr valign="top">
<td>a</td>
<td>
Convert "zen-kaku" alphabets and numbers to "han-kaku"
</td>
</tr>
<tr valign="top">
<td>A</td>
<td>
Convert "han-kaku" alphabets and numbers to "zen-kaku"
(Characters included in "a", "A" options are
U+0021 - U+007E excluding U+0022, U+0027, U+005C, U+007E)
</td>
</tr>
<tr valign="top">
<td>s</td>
<td>
Convert "zen-kaku" space to "han-kaku" (U+3000 -> U+0020)
</td>
</tr>
<tr valign="top">
<td>S</td>
<td>
Convert "han-kaku" space to "zen-kaku" (U+0020 -> U+3000)
</td>
</tr>
<tr valign="top">
<td>k</td>
<td>
Convert "zen-kaku kata-kana" to "han-kaku kata-kana"
</td>
</tr>
<tr valign="top">
<td>K</td>
<td>
Convert "han-kaku kata-kana" to "zen-kaku kata-kana"
</td>
</tr>
<tr valign="top">
<td>h</td>
<td>
Convert "zen-kaku hira-gana" to "han-kaku kata-kana"
</td>
</tr>
<tr valign="top">
<td>H</td>
<td>
Convert "han-kaku kata-kana" to "zen-kaku hira-gana"
</td>
</tr>
<tr valign="top">
<td>c</td>
<td>
Convert "zen-kaku kata-kana" to "zen-kaku hira-gana"
</td>
</tr>
<tr valign="top">
<td>C</td>
<td>
Convert "zen-kaku hira-gana" to "zen-kaku kata-kana"
</td>
</tr>
<tr valign="top">
<td>V</td>
<td>
Collapse voiced sound notation and convert them into a character. Use with "K","H"
</td>
</tr>
</table>
</p>
@param string|null $encoding [optional]
@return string The converted string.
|
mb_convert_kana
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_encode_mimeheader(string $string, ?string $charset, ?string $transfer_encoding, string $newline = "\r\n", int $indent = 0) : string
{
}
|
Encode string for MIME header
@link https://php.net/manual/en/function.mb-encode-mimeheader.php
@param string $string <p>
The string being encoded.
</p>
@param string|null $charset [optional] <p>
charset specifies the name of the character set
in which str is represented in. The default value
is determined by the current NLS setting (mbstring.language).
mb_internal_encoding should be set to same encoding.
</p>
@param string|null $transfer_encoding [optional] <p>
transfer_encoding specifies the scheme of MIME
encoding. It should be either "B" (Base64) or
"Q" (Quoted-Printable). Falls back to
"B" if not given.
</p>
@param string $newline [optional] <p>
linefeed specifies the EOL (end-of-line) marker
with which mb_encode_mimeheader performs
line-folding (a RFC term,
the act of breaking a line longer than a certain length into multiple
lines. The length is currently hard-coded to 74 characters).
Falls back to "\r\n" (CRLF) if not given.
</p>
@param int $indent <p>
Indentation of the first line (number of characters in the header
before str).
</p>
@return string A converted version of the string represented in ASCII.
|
mb_encode_mimeheader
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_decode_mimeheader(string $string) : string
{
}
|
Decode string in MIME header field
@link https://php.net/manual/en/function.mb-decode-mimeheader.php
@param string $string <p>
The string being decoded.
</p>
@return string The decoded string in internal character encoding.
|
mb_decode_mimeheader
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_encode_numericentity(string $string, array $map, ?string $encoding = null, bool $hex = \false) : string
{
}
|
Encode character to HTML numeric string reference
@link https://php.net/manual/en/function.mb-encode-numericentity.php
@param string $string <p>
The string being encoded.
</p>
@param int[] $map <p>
convmap is array specifies code area to
convert.
</p>
@param null|string $encoding
@param bool $hex [optional]
@return string The converted string.
|
mb_encode_numericentity
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
#[LanguageLevelTypeAware(['8.0' => 'string'], default: 'string|false|null')]
function mb_decode_numericentity(string $string, array $map, ?string $encoding = null, #[PhpStormStubsElementAvailable(from: '7.2', to: '7.4')] $is_hex = \false)
{
}
|
Decode HTML numeric string reference to character
@link https://php.net/manual/en/function.mb-decode-numericentity.php
@param string $string <p>
The string being decoded.
</p>
@param int[] $map <p>
convmap is an array that specifies
the code area to convert.
</p>
@param null|string $encoding
@param bool $is_hex [optional] <p>
this parameter is not used.
</p>
@return string|false|null The converted string.
|
mb_decode_numericentity
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
#[ArrayShape(['internal_encoding' => 'string', 'http_input' => 'string', 'http_output' => 'string', 'http_output_conv_mimetypes' => 'string', 'mail_charset' => 'string', 'mail_header_encoding' => 'string', 'mail_body_encoding' => 'string', 'illegal_chars' => 'string', 'encoding_translation' => 'string', 'language' => 'string', 'detect_order' => 'string', 'substitute_character' => 'string', 'strict_detection' => 'string'])]
#[LanguageLevelTypeAware(['8.2' => 'array|string|int|false|null'], default: 'array|string|int|false')]
function mb_get_info(string $type = 'all')
{
}
|
Get internal settings of mbstring
@link https://php.net/manual/en/function.mb-get-info.php
@param string $type [optional] <p>
If type isn't specified or is specified to
"all", an array having the elements "internal_encoding",
"http_output", "http_input", "func_overload", "mail_charset",
"mail_header_encoding", "mail_body_encoding" will be returned.
</p>
<p>
If type is specified as "http_output",
"http_input", "internal_encoding", "func_overload",
the specified setting parameter will be returned.
</p>
@return array|string|int|false An array of type information if type
is not specified, otherwise a specific type.
|
mb_get_info
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[LanguageLevelTypeAware(["8.0" => "bool"], default: "false|int")]
function mb_eregi(string $pattern, string $string, &$matches) : bool
{
}
|
Regular expression match ignoring case with multibyte support
@link https://php.net/manual/en/function.mb-eregi.php
@param string $pattern <p>
The regular expression pattern.
</p>
@param string $string <p>
The string being searched.
</p>
@param string[] &$matches [optional] <p>
Contains a substring of the matched string.
</p>
@return bool|int
|
mb_eregi
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_ereg_replace(string $pattern, string $replacement, string $string, ?string $options = null) : string|false|null
{
}
|
Replace regular expression with multibyte support
@link https://php.net/manual/en/function.mb-ereg-replace.php
@param string $pattern <p>
The regular expression pattern.
</p>
<p>
Multibyte characters may be used in pattern.
</p>
@param string $replacement <p>
The replacement text.
</p>
@param string $string <p>
The string being checked.
</p>
@param string|null $options Matching condition can be set by option
parameter. If i is specified for this
parameter, the case will be ignored. If x is
specified, white space will be ignored. If m
is specified, match will be executed in multiline mode and line
break will be included in '.'. If p is
specified, match will be executed in POSIX mode, line break
will be considered as normal character. If e
is specified, replacement string will be
evaluated as PHP expression.
<p>PHP 7.1: The <i>e</i> modifier has been deprecated.</p>
@return string|false|null The resultant string on success, or false on error.
|
mb_ereg_replace
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_eregi_replace(string $pattern, string $replacement, string $string, #[PhpStormStubsElementAvailable(from: '7.0')] ?string $options = null) : string|false|null
{
}
|
Replace regular expression with multibyte support ignoring case
@link https://php.net/manual/en/function.mb-eregi-replace.php
@param string $pattern <p>
The regular expression pattern. Multibyte characters may be used. The case will be ignored.
</p>
@param string $replacement <p>
The replacement text.
</p>
@param string $string <p>
The searched string.
</p>
@param string|null $options option has the same meaning as in
mb_ereg_replace.
<p>PHP 7.1: The <i>e</i> modifier has been deprecated.</p>
@return string|false|null The resultant string or false on error.
|
mb_eregi_replace
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_ereg_match(string $pattern, string $string, ?string $options) : bool
{
}
|
Regular expression match for multibyte string
@link https://php.net/manual/en/function.mb-ereg-match.php
@param string $pattern <p>
The regular expression pattern.
</p>
@param string $string <p>
The string being evaluated.
</p>
@param string|null $options [optional] <p>
</p>
@return bool
|
mb_ereg_match
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_ereg_search(?string $pattern, ?string $options) : bool
{
}
|
Multibyte regular expression match for predefined multibyte string
@link https://php.net/manual/en/function.mb-ereg-search.php
@param string|null $pattern [optional] <p>
The search pattern.
</p>
@param string|null $options [optional] <p>
The search option.
</p>
@return bool
|
mb_ereg_search
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_ereg_search_pos(?string $pattern, ?string $options) : array|false
{
}
|
Returns position and length of a matched part of the multibyte regular expression for a predefined multibyte string
@link https://php.net/manual/en/function.mb-ereg-search-pos.php
@param string|null $pattern [optional] <p>
The search pattern.
</p>
@param string|null $options [optional] <p>
The search option.
</p>
@return int[]|false An array containing two elements. The first
element is the offset, in bytes, where the match begins relative
to the start of the search string, and the second element is the
length in bytes of the match. If an error occurs, FALSE is returned.
|
mb_ereg_search_pos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_ereg_search_regs(?string $pattern, ?string $options) : array|false
{
}
|
Returns the matched part of a multibyte regular expression
@link https://php.net/manual/en/function.mb-ereg-search-regs.php
@param string|null $pattern [optional] <p>
The search pattern.
</p>
@param string|null $options [optional] <p>
The search option.
</p>
@return string[]|false mb_ereg_search_regs() executes the multibyte
regular expression match, and if there are some matched part, it
returns an array including substring of matched part as first element,
the first grouped part with brackets as second element, the second grouped
part as third element, and so on. It returns FALSE on error.
|
mb_ereg_search_regs
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_ereg_search_getregs() : array|false
{
}
|
Retrieve the result from the last multibyte regular expression match
@link https://php.net/manual/en/function.mb-ereg-search-getregs.php
@return string[]|false An array including the sub-string of matched
part by last mb_ereg_search(), mb_ereg_search_pos(), mb_ereg_search_regs().
If there are some matches, the first element will have the matched
sub-string, the second element will have the first part grouped with
brackets, the third element will have the second part grouped with
brackets, and so on. It returns FALSE on error;
|
mb_ereg_search_getregs
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
#[Deprecated(since: '7.3')]
function mb_ereg_search_getpos() : int
{
}
|
Returns start point for next regular expression match
@link https://php.net/manual/en/function.mb-ereg-search-getpos.php
@return int
|
mb_ereg_search_getpos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_ereg_search_setpos(int $offset) : bool
{
}
|
Set start point of next regular expression match
@link https://php.net/manual/en/function.mb-ereg-search-setpos.php
@param int $offset <p>
The position to set.
</p>
@return bool
|
mb_ereg_search_setpos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Deprecated(replacement: 'mb_ereg(%parametersList%)', since: '7.3')]
function mbereg(string $pattern, string $string, array &$registers)
{
}
|
@param string $pattern
@param string $string
@param array &$registers [optional]
@see mb_ereg
@removed 8.0
|
mbereg
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Deprecated(replacement: "mb_eregi(%parametersList%)", since: "7.3")]
function mberegi(string $pattern, string $string, array &$registers)
{
}
|
@param string $pattern
@param string $string
@param array &$registers [optional]
@see mb_eregi
@removed 8.0
|
mberegi
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Deprecated(replacement: 'mb_ereg_replace(%parametersList%)', since: '7.3')]
function mbereg_replace($pattern, $replacement, $string, $option)
{
}
|
@param $pattern
@param $replacement
@param $string
@param $option [optional]
@see mb_ereg_replace
@removed 8.0
|
mbereg_replace
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Deprecated(replacement: "mb_eregi_replace(%parametersList%)", since: "7.3")]
function mberegi_replace($pattern, $replacement, $string, #[PhpStormStubsElementAvailable(from: '7.0')] string $option = "msri") : string
{
}
|
@param $pattern
@param $replacement
@param $string
@param string $option
@return string
@see mb_eregi_replace
@removed 8.0
|
mberegi_replace
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Deprecated(replacement: "mb_ereg_match(%parametersList%)", since: "7.3")]
function mbereg_match($pattern, $string, $option)
{
}
|
@param $pattern
@param $string
@param $option [optional]
@see mb_ereg_match
@removed 8.0
|
mbereg_match
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Deprecated("use mb_ereg_search instead", replacement: "mb_ereg_search(%parametersList%)", since: "7.3")]
function mbereg_search($pattern, $option)
{
}
|
@param $pattern [optional]
@param $option [optional]
@see mb_ereg_search
@removed 8.0
|
mbereg_search
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Deprecated(replacement: "mb_ereg_search_pos(%parametersList%)", since: "7.3")]
function mbereg_search_pos($pattern, $option)
{
}
|
@param $pattern [optional]
@param $option [optional]
@see mb_ereg_search_pos
@removed 8.0
|
mbereg_search_pos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Deprecated(replacement: 'mb_ereg_search_regs(%parametersList%)', since: '7.3')]
function mbereg_search_regs($pattern, $option)
{
}
|
@param $pattern [optional]
@param $option [optional]
@see mb_ereg_search_regs
@removed 8.0
|
mbereg_search_regs
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Deprecated(replacement: "mb_ereg_search_init(%parametersList%)", since: "7.3")]
function mbereg_search_init($string, $pattern, $option)
{
}
|
@param $string
@param $pattern [optional]
@param $option [optional]
@see mb_ereg_search_init
@removed 8.0
|
mbereg_search_init
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_chr(int $codepoint, ?string $encoding) : string|false
{
}
|
Get a specific character.
@link https://www.php.net/manual/en/function.mb-chr.php
@param int $codepoint
@param string|null $encoding [optional]
@return string|false specific character or FALSE on failure.
@since 7.2
|
mb_chr
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
function mb_ord(string $string, ?string $encoding) : int|false
{
}
|
Get code point of character
@link https://www.php.net/manual/en/function.mb-ord.php
@param string $string
@param string|null $encoding [optional]
@return int|false code point of character or FALSE on failure.
@since 7.2
|
mb_ord
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Pure]
#[LanguageLevelTypeAware(["8.0" => "string"], default: "string|false")]
function mb_scrub(string $string, ?string $encoding) : false|string
{
}
|
Scrub broken multibyte strings.
@link https://www.php.net/manual/en/function.mb-scrub.php
@param string $string
@param string|null $encoding [optional]
@return string|false
@since 7.2
|
mb_scrub
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mbstring/mbstring.php
|
MIT
|
#[Deprecated(since: "5.5")]
function mcrypt_ecb($cipher, $key, $data, $mode)
{
}
|
Encrypt/decrypt data in ECB mode
@link https://php.net/manual/en/function.mcrypt-ecb.php
@param string|int $cipher
@param string $key
@param string $data
@param int $mode
@return string
@removed 7.0
|
mcrypt_ecb
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/mcrypt/mcrypt.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/mcrypt/mcrypt.php
|
MIT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.