POMO_FileReader::read_all()

最后更新于:2021-11-25 22:03:22

POMO_FileReader::read_all()

响应

(string)

源文件

文件: gc-includes/pomo/streams.php

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