Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
stream_open ($path, $mode, $options, &$opened_path) | |
stream_read ($count) | |
stream_write ($data) | |
stream_tell () | |
stream_eof () | |
stream_seek ($offset, $whence) |
Attributs publics | |
$position = 0 | |
$name = null | |
$buffers = array() |
Définition à la ligne 22 du fichier buffer.php.
JBuffer::stream_eof | ( | ) |
Function to test for end of file pointer
Définition à la ligne 133 du fichier buffer.php.
JBuffer::stream_open | ( | $path, | |
$mode, | |||
$options, | |||
& | $opened_path | ||
) |
Function to open file or url
string | $path | The URL that was passed |
string | $mode | Mode used to open the file |
integer | $options | Flags used by the API, may be STREAM_USE_PATH and STREAM_REPORT_ERRORS |
string | &$opened_path | Full path of the resource. Used with STREAN_USE_PATH option |
Définition à la ligne 62 du fichier buffer.php.
JBuffer::stream_read | ( | $count | ) |
Read stream
integer | $count | How many bytes of data from the current position should be returned. |
Définition à la ligne 84 du fichier buffer.php.
JBuffer::stream_seek | ( | $offset, | |
$whence | |||
) |
The read write position updates in response to $offset and $whence
integer | $offset | The offset in bytes |
integer | $whence | Position the offset is added to Options are SEEK_SET, SEEK_CUR, and SEEK_END |
Définition à la ligne 150 du fichier buffer.php.
JBuffer::stream_tell | ( | ) |
Function to get the current position of the stream
Définition à la ligne 120 du fichier buffer.php.
JBuffer::stream_write | ( | $data | ) |
Write stream
string | $data | The data to write to the stream. |
Définition à la ligne 102 du fichier buffer.php.
JBuffer::$buffers = array() |
Définition à la ligne 46 du fichier buffer.php.
JBuffer::$name = null |
Définition à la ligne 38 du fichier buffer.php.
JBuffer::$position = 0 |
Définition à la ligne 30 du fichier buffer.php.