PHP 주요레퍼런스/파일 시스템 함수

readfile

웹 개발자의 비상 2011. 8. 6. 09:51
int readfile(string filename [, bool use_include_path [, resource context]])
파일의 모든 데이터를 읽어들이고 출력한다.

filename을 전체를 읽어들이고 출력한다. 오류를 발생했을 경우에는 FALSE를 반환한다.

예제

<?
// $bytes_read 변수는 읽어들인 데이터의 크기를 값으로 갖는다.

$bytes_read = readfile("message.txt");

/*
He was in time for the last bus.
He goes to his office ever other day.
It is nearly six (o'clock)

일찍일찍 다니자
*/
?>


728x90

'PHP 주요레퍼런스 > 파일 시스템 함수' 카테고리의 다른 글

fgetc  (0) 2011.08.06
fpassthru  (0) 2011.08.06
fgets  (0) 2011.08.06
feof  (0) 2011.08.06
fwrite / fputs  (0) 2011.08.06