最后更新于:2021-11-25 22:03:22
(string)
文件: gc-includes/pomo/streams.php
function read_all() { $all = ''; while ( ! $this->feof() ) { $all .= $this->read( 4096 ); } return $all; }