PHP/File Directory/readfile — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 07:04, 26 мая 2010
readfile() function reads in a file and outputs it to standard output.
Its syntax is: int readfile (string file [, int use_include_path])
<?
$restaurant_file = "data.txt";
print readfile($restaurant_file);
?>
readfile.php
<?php
$file = "data.txt";
$tags = "<h2><h3><p><b><a><img>";
$fh = fopen($file, "rt");
while (!feof($fh))
$article .= fgetss($fh, 1024, $tags);
fclose($fh);
$fh = fopen($file, "wt");
fwrite($fh, $article);
fclose($fh);
$bytes = readfile($file);
?>