Home > Backend Development > PHP Tutorial > PHP4用户手册:函数-fseek_PHP

PHP4用户手册:函数-fseek_PHP

WBOY
Release: 2016-06-01 12:39:01
Original
1076 people have browsed it

手册

H1>

(PHP 3, PHP 4 >= 4.0.0)

fseek -- 定位一个文件的指针

描述

 

int fseek (int fp, int offset [, int whence])

 

为这个文件的引用fp设置文件指示器。这个新的位置,是从文件开始以字节为标准由offset指定的,或由 whence指定的位置开始。 whence的值见下:

 

SEEK_SET - 从文件开始;
SEEK_CUR - 从当前位置;
SEEK_END - 从募嵛部肌?lt;/TD>

 

如果whence 没有指定,默认为 SEEK_SET。

成功,返回0;否则,返回-1。注意定位到结束符 EOF 不是一个错误。

如果使用"http://" or "ftp://"格式的fopen() 返回的指针不可以使用本函数。

注意: whence 参数必须在PHP 4.0 RC1以上的版本中使用。

参见 ftell() 和 rewind().

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template