ホームページ >バックエンド開発 >PHPチュートリアル >PHP でデータを読み取る 4 つの方法
PHPでファイルを読み取る4つの方法。
fopen
$fp = fopen("download.php","rb"); while(!feof($fp)){ echo "fopen: ".fgets($fp); } fclose($fp);
$lines = file("download.php"); foreach($lines as $line){ echo "file: ".$line; }
$content = file_get_contents("download.php"); echo "get_contents: ".$content;
echo "readfile: "; readfile("download.php"); flush();