ファイルシステム
ファイルポインタから 1 行取得します。
<html> <head> <title>t_file_exist.php</title> <body> <?php $file_name ="/home/hoge/public_html/test/test.txt"; $file = fopen($file_name,"r") or die("File Open Error"); $buff = fgets($file); echo $buff; ?> </body> </html>
hellow php
hellow php