|
użytkowników online: 45
|
OPINIE UŻYTKOWNIKÓW
|
Gratulacje i dzięki! Trafiłem tu przypadkiem poszukując informacji na temat php+mysql. Wiele polskich stron powiela identyczne przykłady, klonuje te same kursy i lekcje... ten serwis okazał sie inny. Zasada "problem - rozwiazanie - wyjaśnienie" zdaje egzamin - zapewnia jasną, jednoznaczną i pewną pomoc w konkretnym przypadku. Porady są warte swojej ceny, przede wszystkim ze względu na przyjazną (także dla początkujących) formę i treść oraz bogate i stale powiększane zasoby. Polecam i pozdrawiam!
Kamil Dmowski
Polski Czerwony Krzyż
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
rewind (PHP 3, PHP 4, PHP 5) rewind -- Rewind the position of a file pointer Descriptionbool rewind ( resource handle )
Sets the file position indicator for handle
to the beginning of the file stream.
Zwraca TRUE w przypadku sukcesu, FALSE w
przypadku porażki.
The file pointer must be valid, and must point to a file
successfully opened by fopen().
Notatka:
If you have opened the file in append ("a") mode, any data you write
to the file will always be appended, regardless of the file position.
See also fseek() and
ftell().
User Contributed Notesberndt at www dot michael - berndt dot de
05-May-2005 09:27
evan at ozhiker dot no_spam dot com
05-Aug-2004 05:56
As with fseek(), the rewind() function may not be used on file pointers returned by fopen() if they use the "http://" or "ftp://" formats.
|