API15:JBuffer/stream write/ja
出典: Joomla! ドキュメンテーション
目次 |
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); }
Examples
<CodeExamplesForm />
