POMO_StringReader::read( string $bytes )
Description Description
Parameters Parameters
- $bytes
-
(string) (Required)
Return Return
(string)
Source Source
File: wp-includes/pomo/streams.php
function read( $bytes ) {
$data = $this->substr( $this->_str, $this->_pos, $bytes );
$this->_pos += $bytes;
if ( $this->strlen( $this->_str ) < $this->_pos ) {
$this->_pos = $this->strlen( $this->_str );
}
return $data;
}
Expand full source code Collapse full source code View on Trac