How to use php fseek function

藏色散人
Release: 2023-04-05 09:46:01
Original
3255 people have browsed it

php The fseek() function is used to locate the file pointer. Its syntax is [fseek(file,offset,whence)]. The parameter file is required and refers to the file to be located; offset is required and refers to the file to be located. Specifies the new position, measured in bytes from the beginning of the file.

How to use php fseek function

php fseek function usage:

php fseek() function syntax

Function: Locate within an open file.

Syntax:

fseek(file,offset,whence)
Copy after login

Parameters:

file Required. Specifies the file to locate in.

offset Required. Specifies the new position (measured in bytes from the beginning of the file).

whence Optional. Possible values: SEEK_SET - Set position equal to offset bytes. default. SEEK_CUR - Sets the position to the current position plus offset. SEEK_END - Sets the position to the end of the file plus offset (to move to a position before the end of the file, offset must be a negative value).

Description:

This function moves the file pointer forward or backward from the current position to a new position. The new position is measured in bytes starting from the file header. . Returns 0 on success; otherwise returns -1. Note that moving to a position after EOF does not produce an error.

php fseek() function usage example

"; // 改变当前位置 fseek($file,"13"); // 再次输出当前位置 echo ftell($file); ?>
Copy after login

This article is an introduction to the PHP fseek function. I hope it will be helpful to friends in need!

The above is the detailed content of How to use php fseek function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!