POMO_FileReader::read_all()
Description
Return
(string)
Source
File: wp-includes/pomo/streams.php
function read_all() { $all = ''; while ( ! $this->feof() ) { $all .= $this->read( 4096 ); } return $all; }
(string)
File: wp-includes/pomo/streams.php
function read_all() { $all = ''; while ( ! $this->feof() ) { $all .= $this->read( 4096 ); } return $all; }