Changeset 52696 for trunk/src/wp-includes/pomo/streams.php
- Timestamp:
- 02/09/2022 12:31:27 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pomo/streams.php
r51919 r52696 218 218 */ 219 219 public function read_all() { 220 $all = ''; 221 while ( ! $this->feof() ) { 222 $all .= $this->read( 4096 ); 223 } 224 return $all; 220 return stream_get_contents( $this->_f ); 225 221 } 226 222 }
Note: See TracChangeset
for help on using the changeset viewer.