Computer >> Máy Tính >  >> Lập trình >> PHP

hàm rewind () trong PHP

Hàm rewind () tua lại một con trỏ tệp. Nó di chuyển nó đến đầu tệp. Nó trả về True khi thành công hoặc False khi thất bại.

Cú pháp

rewind(file_pointer)

Tham số

  • file_pointer - Nó phải trỏ đến một tệp được mở bởi fopen ()

Quay lại

Hàm rewind () trả về True khi thành công hoặc False khi thất bại.

Ví dụ

$file_pointer = fopen("new.txt", "r");
// Position of the file pointer is changed
fseek($file_pointer, "12");
// Setting the file pointer to the beginning of the file
rewind($file_pointer);
fclose($file_pointer);

Đầu ra

TRUE