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 function key() : string|int|null
{
}
|
Return current array key
@link https://php.net/manual/en/arrayiterator.key.php
@return string|int|null The key of the current element.
|
key
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function next() : void
{
}
|
Move to next entry
@link https://php.net/manual/en/arrayiterator.next.php
@return void
|
next
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function valid() : bool
{
}
|
Check whether array contains more entries
@link https://php.net/manual/en/arrayiterator.valid.php
@return bool
|
valid
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function seek(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $offset) : void
{
}
|
Seek to position
@link https://php.net/manual/en/arrayiterator.seek.php
@param int $offset <p>
The position to seek to.
</p>
@return void
|
seek
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function hasChildren() : bool
{
}
|
Returns whether current entry is an array or an object.
@link https://php.net/manual/en/recursivearrayiterator.haschildren.php
@return bool true if the current entry is an array or an object,
otherwise false is returned.
|
hasChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function getChildren() : ?\RecursiveArrayIterator
{
}
|
Returns an iterator for the current entry if it is an array or an object.
@link https://php.net/manual/en/recursivearrayiterator.getchildren.php
@return RecursiveArrayIterator|null An iterator for the current entry, if it is an array or object.
|
getChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function getPath() : string
{
}
|
Gets the path without filename
@link https://php.net/manual/en/splfileinfo.getpath.php
@return string the path to the file.
@since 5.1.2
|
getPath
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getFilename() : string
{
}
|
Gets the filename
@link https://php.net/manual/en/splfileinfo.getfilename.php
@return string The filename.
@since 5.1.2
|
getFilename
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getExtension() : string
{
}
|
Gets the file extension
@link https://php.net/manual/en/splfileinfo.getextension.php
@return string a string containing the file extension, or an
empty string if the file has no extension.
@since 5.3.6
|
getExtension
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getPathname() : string
{
}
|
Gets the path to the file
@link https://php.net/manual/en/splfileinfo.getpathname.php
@return string The path to the file.
@since 5.1.2
|
getPathname
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getPerms() : int|false
{
}
|
Gets file permissions
@link https://php.net/manual/en/splfileinfo.getperms.php
@return int|false The file permissions on success, or <b>FALSE</b> on failure.
@since 5.1.2
|
getPerms
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getInode() : int|false
{
}
|
Gets the inode for the file
@link https://php.net/manual/en/splfileinfo.getinode.php
@return int|false The inode number for the filesystem object on success, or <b>FALSE</b> on failure.
@since 5.1.2
|
getInode
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getSize() : int|false
{
}
|
Gets file size
@link https://php.net/manual/en/splfileinfo.getsize.php
@return int|false The filesize in bytes on success, or <b>FALSE</b> on failure.
@since 5.1.2
|
getSize
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getOwner() : int|false
{
}
|
Gets the owner of the file
@link https://php.net/manual/en/splfileinfo.getowner.php
@return int|false The owner id in numerical format on success, or <b>FALSE</b> on failure.
@since 5.1.2
|
getOwner
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getGroup() : int|false
{
}
|
Gets the file group
@link https://php.net/manual/en/splfileinfo.getgroup.php
@return int|false The group id in numerical format on success, or <b>FALSE</b> on failure.
@since 5.1.2
|
getGroup
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getATime() : int|false
{
}
|
Gets last access time of the file
@link https://php.net/manual/en/splfileinfo.getatime.php
@return int|false The time the file was last accessed on success, or <b>FALSE</b> on failure.
@since 5.1.2
|
getATime
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getMTime() : int|false
{
}
|
Gets the last modified time
@link https://php.net/manual/en/splfileinfo.getmtime.php
@return int|false The last modified time for the file, in a Unix timestamp on success, or <b>FALSE</b> on failure.
@since 5.1.2
|
getMTime
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getCTime() : int|false
{
}
|
Gets the inode change time
@link https://php.net/manual/en/splfileinfo.getctime.php
@return int|false The last change time, in a Unix timestamp on success, or <b>FALSE</b> on failure.
@since 5.1.2
|
getCTime
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getType() : string|false
{
}
|
Gets file type
@link https://php.net/manual/en/splfileinfo.gettype.php
@return string|false A string representing the type of the entry. May be one of file, link, dir, block, fifo, char, socket, or unknown, or <b>FALSE</b> on failure.
May be one of file, link,
or dir
@since 5.1.2
|
getType
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function isWritable() : bool
{
}
|
Tells if the entry is writable
@link https://php.net/manual/en/splfileinfo.iswritable.php
@return bool true if writable, false otherwise;
@since 5.1.2
|
isWritable
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function isReadable() : bool
{
}
|
Tells if file is readable
@link https://php.net/manual/en/splfileinfo.isreadable.php
@return bool true if readable, false otherwise.
@since 5.1.2
|
isReadable
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function isExecutable() : bool
{
}
|
Tells if the file is executable
@link https://php.net/manual/en/splfileinfo.isexecutable.php
@return bool true if executable, false otherwise.
@since 5.1.2
|
isExecutable
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function isFile() : bool
{
}
|
Tells if the object references a regular file
@link https://php.net/manual/en/splfileinfo.isfile.php
@return bool true if the file exists and is a regular file (not a link), false otherwise.
@since 5.1.2
|
isFile
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function isDir() : bool
{
}
|
Tells if the file is a directory
@link https://php.net/manual/en/splfileinfo.isdir.php
@return bool true if a directory, false otherwise.
@since 5.1.2
|
isDir
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function isLink() : bool
{
}
|
Tells if the file is a link
@link https://php.net/manual/en/splfileinfo.islink.php
@return bool true if the file is a link, false otherwise.
@since 5.1.2
|
isLink
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getLinkTarget() : string|false
{
}
|
Gets the target of a link
@link https://php.net/manual/en/splfileinfo.getlinktarget.php
@return string|false The target of the filesystem link on success, or <b>FALSE</b> on failure.
@since 5.2.2
|
getLinkTarget
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getRealPath() : string|false
{
}
|
Gets absolute path to file
@link https://php.net/manual/en/splfileinfo.getrealpath.php
@return string|false the path to the file, or <b>FALSE</b> if the file does not exist.
@since 5.2.2
|
getRealPath
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getFileInfo(#[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $class = null) : \SplFileInfo
{
}
|
Gets an SplFileInfo object for the file
@link https://php.net/manual/en/splfileinfo.getfileinfo.php
@param string $class [optional] <p>
Name of an <b>SplFileInfo</b> derived class to use.
</p>
@return SplFileInfo An <b>SplFileInfo</b> object created for the file.
@since 5.1.2
|
getFileInfo
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getPathInfo(#[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $class = null) : ?\SplFileInfo
{
}
|
Gets an SplFileInfo object for the path
@link https://php.net/manual/en/splfileinfo.getpathinfo.php
@param string $class [optional] <p>
Name of an <b>SplFileInfo</b> derived class to use.
</p>
@return SplFileInfo|null A <b>SplFileInfo</b> object for the parent path of the file on success, or <b>NULL</b> on failure.
@since 5.1.2
|
getPathInfo
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function openFile(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $mode = 'r', #[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $useIncludePath = \false, $context = null) : \SplFileObject
{
}
|
Gets an SplFileObject object for the file
@link https://php.net/manual/en/splfileinfo.openfile.php
@param string $mode [optional] <p>
The mode for opening the file. See the <b>fopen</b>
documentation for descriptions of possible modes. The default
is read only.
</p>
@param bool $useIncludePath [optional] <p>
</p>
@param resource $context [optional] <p>
</p>
@return SplFileObject The opened file as an <b>SplFileObject</b> object.
@since 5.1.2
|
openFile
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function setFileClass(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $class = \SplFileObject::class) : void
{
}
|
Sets the class name used with <b>SplFileInfo::openFile</b>
@link https://php.net/manual/en/splfileinfo.setfileclass.php
@param string $class [optional] <p>
The class name to use when openFile() is called.
</p>
@return void
@since 5.1.2
|
setFileClass
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function setInfoClass(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $class = \SplFileInfo::class) : void
{
}
|
Sets the class used with getFileInfo and getPathInfo
@link https://php.net/manual/en/splfileinfo.setinfoclass.php
@param string $class [optional] <p>
The class name to use.
</p>
@return void
@since 5.1.2
|
setInfoClass
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')]
public function __toString()
{
}
|
Returns the path to the file as a string
@link https://php.net/manual/en/splfileinfo.tostring.php
@return string the path to the file.
@since 5.1.2
|
__toString
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function isDot() : bool
{
}
|
Determine if current DirectoryIterator item is '.' or '..'
@link https://php.net/manual/en/directoryiterator.isdot.php
@return bool true if the entry is . or ..,
otherwise false
|
isDot
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function rewind() : void
{
}
|
Rewind the DirectoryIterator back to the start
@link https://php.net/manual/en/directoryiterator.rewind.php
@return void
|
rewind
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function valid() : bool
{
}
|
Check whether current DirectoryIterator position is a valid file
@link https://php.net/manual/en/directoryiterator.valid.php
@return bool true if the position is valid, otherwise false
|
valid
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function key() : mixed
{
}
|
Return the key for the current DirectoryIterator item
@link https://php.net/manual/en/directoryiterator.key.php
@return string The key for the current <b>DirectoryIterator</b> item.
|
key
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function current() : mixed
{
}
|
Return the current DirectoryIterator item.
@link https://php.net/manual/en/directoryiterator.current.php
@return DirectoryIterator The current <b>DirectoryIterator</b> item.
|
current
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function next() : void
{
}
|
Move forward to next DirectoryIterator item
@link https://php.net/manual/en/directoryiterator.next.php
@return void
|
next
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function seek(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $offset) : void
{
}
|
Seek to a DirectoryIterator item
@link https://php.net/manual/en/directoryiterator.seek.php
@param int $offset <p>
The zero-based numeric position to seek to.
</p>
@return void
|
seek
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function hasChildren(#[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $allowLinks = \false) : bool
{
}
|
Returns whether current entry is a directory and not '.' or '..'
@link https://php.net/manual/en/recursivedirectoryiterator.haschildren.php
@param bool $allowLinks [optional] <p>
</p>
@return bool whether the current entry is a directory, but not '.' or '..'
|
hasChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getChildren() : \RecursiveDirectoryIterator
{
}
|
Returns an iterator for the current entry if it is a directory
@link https://php.net/manual/en/recursivedirectoryiterator.getchildren.php
@return RecursiveDirectoryIterator An iterator for the current entry, if it is a directory.
|
getChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getSubPath() : string
{
}
|
Get sub path
@link https://php.net/manual/en/recursivedirectoryiterator.getsubpath.php
@return string The sub path (sub directory).
|
getSubPath
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getSubPathname() : string
{
}
|
Get sub path and name
@link https://php.net/manual/en/recursivedirectoryiterator.getsubpathname.php
@return string The sub path (sub directory) and filename.
|
getSubPathname
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function count() : int
{
}
|
Get the number of directories and files
@link https://php.net/manual/en/globiterator.count.php
@return int<0,max> The number of returned directories and files, as an
integer.
|
count
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function rewind() : void
{
}
|
Rewind the file to the first line
@link https://php.net/manual/en/splfileobject.rewind.php
@return void
|
rewind
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function eof() : bool
{
}
|
Reached end of file
@link https://php.net/manual/en/splfileobject.eof.php
@return bool true if file is at EOF, false otherwise.
|
eof
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function valid() : bool
{
}
|
Not at EOF
@link https://php.net/manual/en/splfileobject.valid.php
@return bool true if not reached EOF, false otherwise.
|
valid
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function fgets() : string
{
}
|
Gets line from file
@link https://php.net/manual/en/splfileobject.fgets.php
@return string a string containing the next line from the file.
|
fgets
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function fread(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $length) : string|false
{
}
|
Read from file
@link https://php.net/manual/en/splfileobject.fread.php
@param int $length <p>
The number of bytes to read.
</p>
@return string|false returns the string read from the file or FALSE on failure.
@since 5.5.11
|
fread
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function flock(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $operation, &$wouldBlock = null) : bool
{
}
|
Portable file locking
@link https://php.net/manual/en/splfileobject.flock.php
@param int $operation <p>
<i>operation</i> is one of the following:
<b>LOCK_SH</b> to acquire a shared lock (reader).
</p>
@param int &$wouldBlock [optional] <p>
Set to 1 if the lock would block (EWOULDBLOCK errno condition).
</p>
@return bool true on success or false on failure.
|
flock
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function fflush() : bool
{
}
|
Flushes the output to the file
@link https://php.net/manual/en/splfileobject.fflush.php
@return bool true on success or false on failure.
|
fflush
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function ftell() : int|false
{
}
|
Return current file position
@link https://php.net/manual/en/splfileobject.ftell.php
@return int|false the position of the file pointer as an integer, or false on error.
|
ftell
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function fseek(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $offset, #[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $whence = \SEEK_SET) : int
{
}
|
Seek to a position
@link https://php.net/manual/en/splfileobject.fseek.php
@param int $offset <p>
The offset. A negative value can be used to move backwards through the file which
is useful when SEEK_END is used as the <i>whence</i> value.
</p>
@param int $whence [optional] <p>
<i>whence</i> values are:
<b>SEEK_SET</b> - Set position equal to <i>offset</i> bytes.
<b>SEEK_CUR</b> - Set position to current location plus <i>offset</i>.
<b>SEEK_END</b> - Set position to end-of-file plus <i>offset</i>.
</p>
<p>
If <i>whence</i> is not specified, it is assumed to be <b>SEEK_SET</b>.
</p>
@return int 0 if the seek was successful, -1 otherwise. Note that seeking
past EOF is not considered an error.
|
fseek
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function fgetc() : string|false
{
}
|
Gets character from file
@link https://php.net/manual/en/splfileobject.fgetc.php
@return string|false a string containing a single character read from the file or false on EOF.
|
fgetc
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function fpassthru() : int
{
}
|
Output all remaining data on a file pointer
@link https://php.net/manual/en/splfileobject.fpassthru.php
@return int the number of characters read from <i>handle</i>
and passed through to the output.
|
fpassthru
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[Deprecated(since: '7.3')]
public function fgetss($allowable_tags = null)
{
}
|
Gets line from file and strip HTML tags
@link https://php.net/manual/en/splfileobject.fgetss.php
@param string $allowable_tags [optional] <p>
You can use the optional third parameter to specify tags which should
not be stripped.
</p>
@return string|false a string containing the next line of the file with HTML and PHP
code stripped, or false on error.
@removed 8.0
|
fgetss
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function fscanf(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $format, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] &...$vars) : array|int|null
{
}
|
Parses input from file according to a format
@link https://php.net/manual/en/splfileobject.fscanf.php
@param string $format <p>
The specified format as described in the <b>sprintf</b> documentation.
</p>
@param mixed &...$vars [optional] <p>
The optional assigned values.
</p>
@return array|int|null If only one parameter is passed to this method, the values parsed will be
returned as an array. Otherwise, if optional parameters are passed, the
function will return the number of assigned values. The optional
parameters must be passed by reference.
|
fscanf
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[LanguageLevelTypeAware(['7.4' => 'int|false'], default: 'int')]
#[TentativeType]
public function fwrite(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $data, #[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $length = 0) : int|false
{
}
|
Write to file
@link https://php.net/manual/en/splfileobject.fwrite.php
@param string $data <p>
The string to be written to the file.
</p>
@param int $length [optional] <p>
If the <i>length</i> argument is given, writing will
stop after <i>length</i> bytes have been written or
the end of <i>string</i> is reached, whichever comes
first.
</p>
@return int|false the number of bytes written, or 0 (false since 7.4) on error.
|
fwrite
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function fstat() : array
{
}
|
Gets information about the file
@link https://php.net/manual/en/splfileobject.fstat.php
@return array an array with the statistics of the file; the format of the array
is described in detail on the <b>stat</b> manual page.
|
fstat
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function ftruncate(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $size) : bool
{
}
|
Truncates the file to a given length
@link https://php.net/manual/en/splfileobject.ftruncate.php
@param int $size <p>
The size to truncate to.
</p>
<p>
If <i>size</i> is larger than the file it is extended with null bytes.
</p>
<p>
If <i>size</i> is smaller than the file, the extra data will be lost.
</p>
@return bool true on success or false on failure.
|
ftruncate
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function current() : string|array|false
{
}
|
Retrieve current line of file
@link https://php.net/manual/en/splfileobject.current.php
@return string|array|false Retrieves the current line of the file. If the <b>SplFileObject::READ_CSV</b> flag is set, this method returns an array containing the current line parsed as CSV data.
|
current
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function key() : int
{
}
|
Get line number
@link https://php.net/manual/en/splfileobject.key.php
@return int the current line number.
|
key
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function next() : void
{
}
|
Read next line
@link https://php.net/manual/en/splfileobject.next.php
@return void
|
next
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function setFlags(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $flags) : void
{
}
|
Sets flags for the SplFileObject
@link https://php.net/manual/en/splfileobject.setflags.php
@param int $flags <p>
Bit mask of the flags to set. See
SplFileObject constants
for the available flags.
</p>
@return void
|
setFlags
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getFlags() : int
{
}
|
Gets flags for the SplFileObject
@link https://php.net/manual/en/splfileobject.getflags.php
@return int an integer representing the flags.
|
getFlags
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function setMaxLineLen(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $maxLength) : void
{
}
|
Set maximum line length
@link https://php.net/manual/en/splfileobject.setmaxlinelen.php
@param int $maxLength <p>
The maximum length of a line.
</p>
@return void
|
setMaxLineLen
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getMaxLineLen() : int
{
}
|
Get maximum line length
@link https://php.net/manual/en/splfileobject.getmaxlinelen.php
@return int<0, max> the maximum line length if one has been set with
<b>SplFileObject::setMaxLineLen</b>, default is 0.
|
getMaxLineLen
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
#[LanguageLevelTypeAware(['8.2' => 'false'], default: 'bool')]
public function hasChildren()
{
}
|
SplFileObject does not have children
@link https://php.net/manual/en/splfileobject.haschildren.php
@return bool false
@since 5.1.2
|
hasChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
#[LanguageLevelTypeAware(['8.2' => 'null'], default: 'null|RecursiveIterator')]
public function getChildren()
{
}
|
No purpose
@link https://php.net/manual/en/splfileobject.getchildren.php
@return null|RecursiveIterator An SplFileObject does not have children so this method returns NULL.
|
getChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function seek(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $line) : void
{
}
|
Seek to specified line
@link https://php.net/manual/en/splfileobject.seek.php
@param int $line <p>
The zero-based line number to seek to.
</p>
@return void
|
seek
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getCurrentLine() : string
{
}
|
Alias of <b>SplFileObject::fgets</b>
@link https://php.net/manual/en/splfileobject.getcurrentline.php
@return string Returns a string containing the next line from the file.
@since 5.1.2
|
getCurrentLine
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')]
public function __toString()
{
}
|
Alias of <b>SplFileObject::current</b>
@link https://php.net/manual/en/splfileobject.tostring.php
|
__toString
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function add(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $index, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void
{
}
|
Add/insert a new value at the specified index
@param mixed $index The index where the new value is to be inserted.
@param mixed $value The new value for the index.
@return void
@link https://php.net/spldoublylinkedlist.add
@since 5.5
|
add
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function pop() : mixed
{
}
|
Pops a node from the end of the doubly linked list
@link https://php.net/manual/en/spldoublylinkedlist.pop.php
@return mixed The value of the popped node.
|
pop
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function shift() : mixed
{
}
|
Shifts a node from the beginning of the doubly linked list
@link https://php.net/manual/en/spldoublylinkedlist.shift.php
@return mixed The value of the shifted node.
|
shift
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function push(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void
{
}
|
Pushes an element at the end of the doubly linked list
@link https://php.net/manual/en/spldoublylinkedlist.push.php
@param mixed $value <p>
The value to push.
</p>
@return void
|
push
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function unshift(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void
{
}
|
Prepends the doubly linked list with an element
@link https://php.net/manual/en/spldoublylinkedlist.unshift.php
@param mixed $value <p>
The value to unshift.
</p>
@return void
|
unshift
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function top() : mixed
{
}
|
Peeks at the node from the end of the doubly linked list
@link https://php.net/manual/en/spldoublylinkedlist.top.php
@return mixed The value of the last node.
|
top
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function bottom() : mixed
{
}
|
Peeks at the node from the beginning of the doubly linked list
@link https://php.net/manual/en/spldoublylinkedlist.bottom.php
@return mixed The value of the first node.
|
bottom
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function count() : int
{
}
|
Counts the number of elements in the doubly linked list.
@link https://php.net/manual/en/spldoublylinkedlist.count.php
@return int the number of elements in the doubly linked list.
|
count
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function isEmpty() : bool
{
}
|
Checks whether the doubly linked list is empty.
@link https://php.net/manual/en/spldoublylinkedlist.isempty.php
@return bool whether the doubly linked list is empty.
|
isEmpty
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function setIteratorMode(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $mode) : int
{
}
|
Sets the mode of iteration
@link https://php.net/manual/en/spldoublylinkedlist.setiteratormode.php
@param int $mode <p>
There are two orthogonal sets of modes that can be set:
</p>
The direction of the iteration (either one or the other):
<b>SplDoublyLinkedList::IT_MODE_LIFO</b> (Stack style)
@return int
|
setIteratorMode
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function getIteratorMode() : int
{
}
|
Returns the mode of iteration
@link https://php.net/manual/en/spldoublylinkedlist.getiteratormode.php
@return int the different modes and flags that affect the iteration.
|
getIteratorMode
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function offsetExists($index) : bool
{
}
|
Returns whether the requested $index exists
@link https://php.net/manual/en/spldoublylinkedlist.offsetexists.php
@param mixed $index <p>
The index being checked.
</p>
@return bool true if the requested <i>index</i> exists, otherwise false
|
offsetExists
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function offsetGet($index) : mixed
{
}
|
Returns the value at the specified $index
@link https://php.net/manual/en/spldoublylinkedlist.offsetget.php
@param mixed $index <p>
The index with the value.
</p>
@return mixed The value at the specified <i>index</i>.
|
offsetGet
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function offsetSet($index, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void
{
}
|
Sets the value at the specified $index to $newval
@link https://php.net/manual/en/spldoublylinkedlist.offsetset.php
@param mixed $index <p>
The index being set.
</p>
@param mixed $value <p>
The new value for the <i>index</i>.
</p>
@return void
|
offsetSet
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function offsetUnset($index) : void
{
}
|
Unsets the value at the specified $index
@link https://php.net/manual/en/spldoublylinkedlist.offsetunset.php
@param mixed $index <p>
The index being unset.
</p>
@return void
|
offsetUnset
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function rewind() : void
{
}
|
Rewind iterator back to the start
@link https://php.net/manual/en/spldoublylinkedlist.rewind.php
@return void
|
rewind
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function current() : mixed
{
}
|
Return current array entry
@link https://php.net/manual/en/spldoublylinkedlist.current.php
@return mixed The current node value.
|
current
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function key() : int
{
}
|
Return current node index
@link https://php.net/manual/en/spldoublylinkedlist.key.php
@return string|float|int|bool|null The current node index.
|
key
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function next() : void
{
}
|
Move to next entry
@link https://php.net/manual/en/spldoublylinkedlist.next.php
@return void
|
next
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function prev() : void
{
}
|
Move to previous entry
@link https://php.net/manual/en/spldoublylinkedlist.prev.php
@return void
|
prev
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function valid() : bool
{
}
|
Check whether the doubly linked list contains more nodes
@link https://php.net/manual/en/spldoublylinkedlist.valid.php
@return bool true if the doubly linked list contains any more nodes, false otherwise.
|
valid
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function unserialize(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $data) : void
{
}
|
Unserializes the storage
@link https://php.net/manual/en/spldoublylinkedlist.serialize.php
@param string $data The serialized string.
@return void
@since 5.4
|
unserialize
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function serialize() : string
{
}
|
Serializes the storage
@link https://php.net/manual/en/spldoublylinkedlist.unserialize.php
@return string The serialized string.
@since 5.4
|
serialize
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function enqueue(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void
{
}
|
Adds an element to the queue.
@link https://php.net/manual/en/splqueue.enqueue.php
@param TValue $value <p>
The value to enqueue.
</p>
@return void
|
enqueue
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function dequeue() : mixed
{
}
|
Dequeues a node from the queue
@link https://php.net/manual/en/splqueue.dequeue.php
@return TValue The value of the dequeued node.
|
dequeue
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function extract() : mixed
{
}
|
Extracts a node from top of the heap and sift up.
@link https://php.net/manual/en/splheap.extract.php
@return TValue The value of the extracted node.
|
extract
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
#[TentativeType]
public function insert(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : bool
{
}
|
Inserts an element in the heap by sifting it up.
@link https://php.net/manual/en/splheap.insert.php
@param TValue $value <p>
The value to insert.
</p>
@return bool
|
insert
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL_c1.php
|
MIT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.