API15

API15:JBuffer/stream write

From Joomla! Documentation

<! removed transcluded page call, red link never existed >

Syntax

stream_write($data)
Parameter Name Default Value Description
$data

Defined in

libraries/joomla/utilities/buffer.php

Importing

jimport( 'joomla.utilities.buffer' );

Source Body

function stream_write($data)
{
        $left = substr($this->_buffers[$this->name], 0, $this->position);
        $right = substr($this->_buffers[$this->name], $this->position + strlen($data));
        $this->_buffers[$this->name] = $left . $data . $right;
        $this->position += strlen($data);
        return strlen($data);
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples