Joomla CMS
4.2.2
Documentation des API du CMS Joomla en version 4.2.2
|
Fonctions membres publiques | |
__destruct () | |
__toString () | |
close () | |
detach () | |
getSize () | |
tell () | |
eof () | |
isSeekable () | |
seek ($offset, $whence=\SEEK_SET) | |
rewind () | |
isWritable () | |
write ($string) | |
isReadable () | |
read ($length) | |
getContents () | |
getMetadata ($key=null) | |
Fonctions membres publiques statiques | |
static | create ($body='') |
Fonctions membres privées | |
const | __construct () |
getUri () | |
Attributs privés | |
$stream | |
$seekable | |
$readable | |
$writable | |
$uri | |
$size | |
const | READ_WRITE_HASH |
This class should never be extended. See https://github.com/Nyholm/psr7/blob/master/doc/final.md
|
private |
__destruct | ( | ) |
Closes the stream when the destructed.
Références Stream\close().
__toString | ( | ) |
Implémente StreamInterface.
Références $errorHandler, Stream\getContents(), Stream\isSeekable(), null, et Stream\seek().
close | ( | ) |
Closes the stream and any underlying resources.
Implémente StreamInterface.
Références Stream\detach().
Référencé par Stream\__destruct().
|
static |
Creates a new PSR-7 stream.
string | resource | StreamInterface | $body |
Référencé par Request\__construct(), Response\__construct(), ServerRequest\__construct(), UploadedFile\__construct(), HttplugFactory\createStream(), Psr17Factory\createStream(), Psr17Factory\createStreamFromFile(), Psr17Factory\createStreamFromResource(), Nyholm\Psr7\getBody(), UploadedFile\getStream(), et UploadedFile\moveTo().
detach | ( | ) |
Separates any underlying resources from the stream.
After the stream has been detached, the stream is in an unusable state.
Implémente StreamInterface.
Références $result, Stream\$stream, et null.
Référencé par Stream\close().
eof | ( | ) |
getContents | ( | ) |
Returns the remaining contents in a string
Implémente StreamInterface.
Référencé par Stream\__toString().
getMetadata | ( | $key = null | ) |
getSize | ( | ) |
Get the size of the stream if known.
Implémente StreamInterface.
Références Stream\$size, Stream\$uri, Stream\getUri(), et null.
|
private |
Références Stream\$uri, et Stream\getMetadata().
Référencé par Stream\getSize().
isReadable | ( | ) |
Returns whether or not the stream is readable.
Implémente StreamInterface.
Références Stream\$readable.
isSeekable | ( | ) |
Returns whether or not the stream is seekable.
Implémente StreamInterface.
Références Stream\$seekable.
Référencé par Stream\__toString().
isWritable | ( | ) |
Returns whether or not the stream is writable.
Implémente StreamInterface.
Références Stream\$writable.
read | ( | $length | ) |
Read data from the stream.
int | $length | Read up to $length bytes from the object and return them. Fewer than $length bytes may be returned if underlying stream call returns fewer bytes. |
Implémente StreamInterface.
Références $result.
rewind | ( | ) |
Seek to the beginning of the stream.
If the stream is not seekable, this method will raise an exception; otherwise, it will perform a seek(0).
Implémente StreamInterface.
Références Stream\seek().
seek | ( | $offset, | |
$whence = \SEEK_SET |
|||
) |
Seek to a position in the stream.
Implémente StreamInterface.
Références Joomla\Database\Query\$offset.
Référencé par Stream\__toString(), et Stream\rewind().
tell | ( | ) |
Returns the current position of the file read/write pointer
Implémente StreamInterface.
Références $result.
write | ( | $string | ) |
Write data to the stream.
string | $string | The string that is to be written. |
Implémente StreamInterface.
|
private |
Référencé par Stream\isReadable().
|
private |
Référencé par Stream\isSeekable().
|
private |
Référencé par Stream\getSize().
|
private |
Référencé par Stream\detach().
|
private |
Référencé par Stream\getSize(), et Stream\getUri().
|
private |
Référencé par Stream\isWritable().
|
private |