Method |
Description |
|
cast ( integer $castType ) : resource |
Retrieve the underlying resource. |
|
close ( ) : void |
Close an resource. |
|
closeDirectory ( ) : boolean |
Close directory handle. |
|
flush ( ) : boolean |
Flushes the output. |
|
getScheme ( ) : string |
Returns the scheme ("protocol") this wrapper handles. |
|
isAtEof ( ) : boolean |
Tests for end-of-file on a file pointer. |
|
lock ( integer $operation ) : boolean |
Advisory file locking. |
|
makeDirectory ( string $path, integer $mode, integer $options ) : boolean |
Create a directory. |
|
open ( string $path, string $mode, integer $options, &$openedPathAndFilename ) : boolean |
Opens file or URL. |
|
openDirectory ( string $path, integer $options ) : boolean |
Open directory handle. |
|
pathStat ( string $path, integer $flags ) : array |
Retrieve information about a file. |
|
read ( integer $count ) : string |
Read from stream. |
|
readDirectory ( ) : string |
Read entry from directory handle. |
|
removeDirectory ( string $path, integer $options ) : boolean |
Removes a directory. |
|
rename ( string $source, string $target ) : boolean |
Renames a file or directory. |
|
resourceStat ( ) : array |
Retrieve information about a file resource. |
|
rewindDirectory ( ) : boolean |
Rewind directory handle. |
|
seek ( integer $offset, integer $whence = SEEK_SET ) : boolean |
Seeks to specific location in a stream. |
|
setOption ( integer $option, integer $argument1, integer $argument2 ) : boolean |
Change stream options. |
|
tell ( ) : integer |
Retrieve the current position of a stream. |
|
unlink ( string $path ) : boolean |
Delete a file. |
|
unlock ( ) : boolean |
Advisory file locking. |
|
write ( string $data ) : integer |
Write to stream. |
|