array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.rewind.php', 1 => 'rewind', 2 => 'Rewind the position of a file pointer', ), 'up' => array ( 0 => 'ref.filesystem.php', 1 => 'Функції Файлової Системи', ), 'prev' => array ( 0 => 'function.rename.php', 1 => 'rename', ), 'next' => array ( 0 => 'function.rmdir.php', 1 => 'rmdir', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/filesystem/functions/rewind.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

rewind

(PHP 4, PHP 5, PHP 7, PHP 8)

rewindRewind the position of a file pointer

Опис

rewind(resource $stream): bool

Sets the file position indicator for stream to the beginning of the file stream.

Зауваження:

If you have opened the file in append ("a" or "a+") mode, any data you write to the file will always be appended, regardless of the file pointer position.

Параметри

stream

The file pointer must be valid, and must point to a file successfully opened by fopen().

Значення, що повертаються

Повертає true у разі успіху або false в разі помилки.

Приклади

Приклад #1 rewind() overwriting example

<?php
$handle
= fopen('output.txt', 'r+');

fwrite($handle, 'Really long sentence.');
rewind($handle);
fwrite($handle, 'Foo');
rewind($handle);

echo
fread($handle, filesize('output.txt'));

fclose($handle);
?>

Поданий вище приклад виведе щось схоже на:

Foolly long sentence.

Прогляньте також