Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17149 программистов и 1834 робота. Сейчас ищет 1671 программист ...
File::rewind()
Вернуться к: File
File::rewind()
File::rewind() – rewinds a file pointer
Synopsis
require_once 'File.php';
mixed File::rewind ( string $filename , string $mode )
Parameter
Return value
Throws
Note
This function can be called statically.
See
Example
Using File::rewind()
<?php
require_once 'File.php';
$e = File::rewind('test.txt', FILE_MODE_READ);
if (PEAR::isError($e)) {
echo 'Could not rewind the file : ' . $e->getMessage();
} else {
echo "File test.txt successfully rewound\n";
}
?>
Вернуться к: File