Web/PHP

파일 읽고 쓰기 - 간단한 데이터를 다룰 때

WakaraNai 2021. 10. 9. 22:35
728x90
반응형

DB까지 접근할 필요 없는 간단한 설정값들은 파일에 저장해놓고 쓰기 편하다.

  1. Connect the target file with a 'file handle'
    1. $fp = fopen("memo1.txt", "r");
  2. Read / Write
  3. Close

 

 

 

텍스트 파일 읽기

abc.txt

abcdefg
hijklmnop
qrstuv
wxyz

 

readfile.txt

<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
  <?php
    $fp = @fopen("abc.txt", "r") or die("Error!\n");
    while (!feof($fp)) {
      echo fgets($fp)."<BR>\n";
    }
    fclose($fp);
  ?>
  
</body>
</html>

 

728x90
반응형

'Web > PHP' 카테고리의 다른 글

[PHP] File Upload  (0) 2021.11.06
SQLite  (0) 2021.10.09
환경설정 - Apache, PHP  (0) 2021.10.09
PHP + MySQL  (0) 2021.10.09
PHP 설치 - XAMPP  (0) 2021.10.06