PHP에서 파일의 내용을 문자열로 읽어오고 싶을 때마다 file_get_contents() 함수라는 함수를 사용합니다. 이 기능은 운영 체제에서 지원하는 경우 메모리 매핑 기술을 사용하여 성능을 향상시킬 수 있습니다. 지정된 파일의 내용에 성공적으로 액세스하고 읽으면 이 함수는 파일의 내용을 문자열로 반환합니다. 그리고 함수가 지정된 파일에 접근할 수 없거나 지정된 파일의 내용을 읽을 수 없는 경우, 이 함수는 false를 반환하고, 읽을 파일이 존재하는 위치의 경로를 이 함수에 매개변수로 전달합니다. .
광고 이 카테고리에서 인기 있는 강좌 콘텐츠 마케팅 숙달: 성공을 위한 전략 - 전문화 | 4개 코스 시리즈무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
PHP에서 file_get_contents() 함수를 선언하는 구문은 다음과 같습니다.
file_get_contents(path_to_the_file);
여기서 path_to_the_file은 file_get_contents() 함수를 통해 문자열로 내용을 읽어올 파일이 있는 파일의 경로입니다.
아래에 언급된 예시는 다음과 같습니다
file_get_contents() 함수에 매개변수로 전달된 경로의 위치에 있는 파일의 내용을 읽는 PHP 프로그램:
코드:
#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents @filecontents = file_get_contents('C:/Users/admin/Desktop/check.txt'); print "The contents of the specified file is as follows:\n"; #displaying the contents of the file echo $filecontents;
위 프로그램의 출력은 아래 스냅샷과 같습니다.
위 프로그램에서는 파일이 있는 파일의 경로를 전달하여 파일의 내용을 filecontents라는 문자열로 읽어서 file_get_contents() 함수를 사용하고 있습니다. 그러면 파일의 내용이 화면에 출력으로 표시됩니다.
file_get_contents() 함수에 매개변수로 전달된 경로의 위치에 있는 파일의 내용을 읽는 PHP 프로그램:
코드:
#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents @filecontents = file_get_contents('C:/Users/admin/Desktop/EDUCBA/check1.txt’); print "The contents of the specified file is as follows:\n"; #displaying the contents of the file echo $filecontents;
위 프로그램의 출력은 아래 스냅샷과 같습니다.
위 프로그램에서는 파일이 있는 파일의 경로를 전달하여 파일의 내용을 filecontents라는 문자열로 읽어서 file_get_contents() 함수를 사용하고 있습니다. 그러면 파일의 내용이 화면에 출력으로 표시됩니다.
file_get_contents() 함수에 매개변수로 전달된 경로의 위치에 있는 파일의 내용을 읽는 PHP 프로그램:
코드:
#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents @filecontents = file_get_contents('C:/Users/admin/Desktop/check2.txt'); print "The contents of the specified file is as follows:\n"; #displaying the contents of the file echo $filecontents;
위 프로그램의 출력은 아래 스냅샷과 같습니다.
위 프로그램에서는 파일이 있는 파일의 경로를 전달하여 파일의 내용을 filecontents라는 문자열로 읽어서 file_get_contents() 함수를 사용하고 있습니다. 그러면 파일의 내용이 화면에 출력으로 표시됩니다.
file_get_contents() 함수에 매개변수로 전달된 경로의 위치에 있는 파일의 내용을 읽는 PHP 프로그램:
코드:
#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents @filecontents = file_get_contents('C:/Users/admin/Desktop/check3.txt'); print "The contents of the specified file is as follows:\n"; #displaying the contents of the file echo $filecontents;
위 프로그램의 출력은 아래 스냅샷과 같습니다.
위 프로그램에서는 파일이 있는 파일의 경로를 전달하여 파일의 내용을 filecontents라는 문자열로 읽어서 file_get_contents() 함수를 사용하고 있습니다. 그러면 파일의 내용이 화면에 출력으로 표시됩니다.
PHP program to read the contents of the file present in the location whose path is passed as a parameter to the file_get_contents() function:
Code:
#making use of file_get_contents() function by passing the path to the file where the file is present to read the contents of the file into a string called filecontents @filecontents = file_get_contents('C:/Users/admin/Desktop/check4.txt'); print "The contents of the specified file is as follows:\n"; #displaying the contents of the file echo $filecontents;
The output of the above program is as shown in the snapshot below:
In the above program, we are making use of the file_get_contents() function by passing the path of the file where the files are present to read the contents of the file into a string called filecontents. Then the contents of the file are displayed as the output on the screen.
위 내용은 PHP 파일_get_contents의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!