개발자의 끄적끄적

[php] fwrite 파일쓰기 본문

개발/php

[php] fwrite 파일쓰기

효벨 2020. 1. 19. 02:00
728x90
반응형

[php] fwrite 파일쓰기

1

2

3

4

5

6

7

8

// fwrite(), fputs()는 동일

fwrite($fp, $outputstring[, strlen($outputstring)]);

int fwrite(resource handle, string string[, length])

// length는 파일에 쓸 최대 문자수

 

int file_put_contents(string filename, string data[, int flags[, resource context])

// string file_get_contents(string filename)와 쌍을 이룬다.(아래 파일 읽기에서 설명)

// fopen, fclose 불필요. resource는 20장 네트워크와 프로토콜 함수에서

fwrite에서 바이너리 모드를 써서 여러 플랫폼에서 사용할 수 있는 코드를 만들 때에는 세 번째 파라미터를 사용하는 것이 좋다. 

$outputstring을 저장할 때 각 필드는 \t, 각 레코드는 \n 등으로 구분 문자를 넣어주면 나중에 불러올 때 편리하다. 

 

출처 : https://www.opentutorials.org/course/779/4929

반응형
Comments