Syntax Syntax
Return Return
(string)
Source Source
File: wp-includes/pomo/streams.php
function read_all() {
$all = '';
while ( ! $this->feof() ) {
$all .= $this->read( 4096 );
}
return $all;
}
Developer Resources, Tips, Tricks, Tutorials and Much more.
(string)
File: wp-includes/pomo/streams.php
function read_all() {
$all = '';
while ( ! $this->feof() ) {
$all .= $this->read( 4096 );
}
return $all;
}