Uses
| Uses | Description |
|---|---|
| wp-includes/pomo/streams.php: POMO_FileReader::feof() | |
| wp-includes/pomo/streams.php: POMO_FileReader::read() |
(string)
File: wp-includes/pomo/streams.php
function read_all() {
$all = '';
while ( ! $this->feof() ) {
$all .= $this->read( 4096 );
}
return $all;
}
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/pomo_filereader/read_all