(PHP 4, PHP 5, PHP 7)
rewind — �����ļ�ָ���λ��
$handle
) : bool
�� handle
���ļ�λ��ָ����Ϊ�ļ����Ŀ�ͷ��
Note:
������ļ��Ը��ӣ�"a" ���� "a+"��ģʽ��д���ļ����κ��������ǻᱻ�����ں��棬�����ļ�ָ���λ�á�
�ɹ�ʱ���� TRUE
�� ������ʧ��ʱ���� FALSE
��
Example #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.