Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php
$file = '/my/path/to/file.txt';
$content = '';
if(!file_exists($file) || !is_readable($file)) {
// File is unreadable
} else {
$fr = fopen($file, 'r');
while (($line = fgets($fr)) !== false) {
$content .= $line;
}
fclose($fr);
}
?>
<?php
$file = '/my/path/to/file.txt';
$content = '';
if(!file_exists($file) || !is_readable($file)) {
// File is unreadable
} else {
$content = file_get_contents($file);
}
?>
Да... За год позабывал все... Совсем забыл про file_get_contents. Пойду курить маны сам...Нехороший вариант, уважаемый ip027
Объясняю почему: фишка в том, что вы эмулируете тупой file_get_contents() - он работает по тому же принципу (читаем маны - ыыы). Зачем эмулировать стандартные функции? Плюс - вызов того же filesize никому не нужного
readfile('file.txt');
print(file_get_contents('file.txt'))
ну вообще file_get_contents с 4 ветки пхп доступен (хотя наверняка 3-ки почти не осталось в работе)
а вот более четко под эту задачу подходит функцияэто примерно тоже самое, что иPHP:readfile('file.txt');
PHP:print(file_get_contents('file.txt'))