POMO_FileReader::seekto()
最后更新于:2021-11-25 22:07:23
POMO_FileReader::seekto( int$pos)
参数
- $pos
-
(int)
(Required)
响应
(bool)
源文件
文件: gc-includes/pomo/streams.php
function seekto( $pos ) {
if ( -1 == fseek( $this->_f, $pos, SEEK_SET ) ) {
return false;
}
$this->_pos = $pos;
return true;
}