POMO_FileReader::read_all()


Description Description


Return Return

(string)


Top ↑

Source Source

File: wp-includes/pomo/streams.php

		function read_all() {
			$all = '';
			while ( ! $this->feof() ) {
				$all .= $this->read( 4096 );
			}
			return $all;
		}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.