>  기사  >  백엔드 개발  >  PHP 파일 처리

PHP 파일 처리

王林
王林원래의
2024-08-29 13:06:58766검색

모든 최신 소프트웨어는 파일과 상호 작용해야 합니다. 파일 형식의 입력을 허용하거나 출력을 생성하여 파일에 추가해야 합니다. 두 시나리오 모두에서 파일 통합 기능은 비즈니스를 운영하는 데 사용되는 거의 모든 소프트웨어의 필수 기능이 되었습니다. 모든 애플리케이션에는 파일 처리가 필요합니다. 일부 작업을 수행하려면 파일을 처리해야 합니다. PHP의 파일 처리는 C와 같은 모든 언어의 파일 처리와 유사합니다. PHP에는 작업할 수 있는 일반적인 파일 기능이 많이 있습니다.

무료 소프트웨어 개발 과정 시작

웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등

PHP 파일 처리 용량 사용 사례

예를 들어, 은행에는 3개월 또는 6개월 동안의 은행 계좌 명세서와 같은 보고서를 생성하는 데 도움이 되는 소프트웨어가 필요하고, 전자 상거래 회사는 재고 및 판매와 관련된 보고서를 인쇄해야 하며, 무엇보다도 중요합니다. 주식 시장 거래와 관련된 애플리케이션의 경우 일일 주가가 판독 가능한 파일 형식으로 제공되어야 합니다. 이 예를 보면 비즈니스 기능을 지원하는 모든 소프트웨어에서 파일에 데이터를 읽거나 써야 한다는 점에 동의하실 것입니다.

파일 처리 용량은 현대 애플리케이션에서 거의 필수이므로 Python, Java, C# 및 PHP와 같은 주요 프로그래밍 언어는 모두 개발자가 대화형 애플리케이션을 개발하는 데 사용하는 내장 파일 처리 기능을 제공합니다.

PHP의 파일 처리 기능

PHP는 읽기 및 쓰기 작업에 다음 파일 형식을 지원합니다.

  • 텍스트 파일: 확장자가 .txt인 파일
  • 로그 파일: 확장자가 .log인 파일
  • 맞춤 확장자: .abc와 같은 맞춤 확장자를 가진 파일
  • CSV 파일: 확장자가 .csv인 파일
  • 이미지 파일: 확장자가 .jpg/png/gif인 파일
  • 초기화 설정이 있는 파일: 확장자가 .ini인 파일

PHP의 파일 처리 기능

PHP는 다양한 파일 작업을 수행할 수 있는 다양한 내장 기능을 제공합니다. 이러한 파일 기능은 Linus, Unix, MAC 및 Windows와 같은 모든 OS 시스템에서 잘 작동합니다. 그러나 MAC OS 및 Windows의 파일 이름은 대소문자를 구분하지 않지만 Unix 및 Linux의 파일 이름은 대소문자를 구분합니다. 따라서 혼란이나 오류를 방지하려면 완전한 플랫폼 호환성을 보장하기 위해 모든 파일의 이름을 소문자로 지정하는 것이 가장 좋습니다.

이제 PHP 파일 처리 기능이 어떻게 작동하는지에 대해 높은 수준으로 이해했으니 이제 기능을 하나씩 이해해 보겠습니다.

1. file_exists() 함수

이 함수는 매개변수로 제공된 파일 이름이 있는지 확인하는 데 사용됩니다. 존재하지 않는 파일을 읽거나 쓰려고 시도하여 발생할 수 있는 오류를 방지하는 데 사용됩니다.

구문:

<?php
file_exists($file_name) //where file_name  would be a file with one of the supported extensions
?>

file_exists()는 파일이 존재하면 True 값을 반환하고, 파일이 존재하지 않으면 false를 반환합니다.

이제 코드 스펙에서 이 함수를 사용하여 파일 존재 여부를 확인해 보겠습니다. 루트 폴더에 "mysettings.ini"라는 이름의 파일을 배치하고 다음 코드로 액세스해 보겠습니다.

코드:

<?php
if (file_exists('mysettings.ini))
{
echo 'yay! file found!';
}
else
{
echo 'Sorry! mysettings.ini does not exist';
}
?>

출력:

PHP 파일 처리

이제 해당 위치에서 파일을 삭제하고 위 코드를 실행하면 다음과 같은 결과가 출력됩니다.

PHP 파일 처리

2. fopen() 함수

fopen 함수는 PHP에서 애플리케이션이 읽을 파일을 여는 데 사용됩니다.

구문:

<?php
fopen($fname,$mode,$use_include_path,$context);
?>

위 구문에서 $fname은 파일 이름을 나타내고 $mode는 파일을 열려는 모드를 나타냅니다. $mode는 다음 값 중 하나일 수 있습니다.

  • r: For opening the file in only read-only mode. It returns false if the file name supplied is not found on the location supplied.
  • r+: For opening the file in both read and write mode. Similar to ‘r’, it also returns false if a file is not found.
  • w: For opening the file in only write-only mode. If the file supplied doesn’t exist, it attempts to create one.
  • w+: For opening the file in both read and write mode. Similar to ‘w’, it also attempts to create a file if the file name supplied is not found.
  • a: For opening the file in write-only mode and appending to the end of the file. If the file supplied doesn’t exist, it attempts to create one.
  • a+: For opening the file in both read and write mode. Similar to ‘a’, it also attempts to create a file if the file name supplied is not found.

3. fwrite() Function

As the name suggests, this function is used to write content to files.

Syntax:

<?php
fwrite($handle, $data_string, $len);
?>

Where $handle is the file location, $data_string is the text string we would like to write to the file and $len is the optional parameter to specify the maximum length of the file.

4. fclose() Function

The fclose() function is used in php when the read/write operations on file are completed and we would like to close the file.

Syntax:

<?php
fclose($file_handle);
?>

Where $file_handle stands for the file pointer.

5. fgets() Function

The fgets() function is used in php to read the file line by line.

Syntax:

<?php
fgets($file_handle);
?>

Where $file_handle stands for the file pointer.

6. copy() Function

The copy() function allows us to copy a file in php.

Syntax:

<?php
copy($file1, $file2);
?>

Where $file1 is the original file and $file2 is the copied file location.

7. unlink() Function

The unlink() function in Php is used to delete a file.

Syntax:

<?php
unlink($filename);
?>

Where the $filename is the filename to be deleted.

Conclusion

With the above example, we can easily conclude that php has a wide variety of in-built functions that simplify reading and writing operations on the file. The most commonly used function include fopen() to open the file in different modes, fwrite() to write data to the file, fread() to read the file content, fclose() to close the file once the necessary operation is done, copy() to copy one file content to another and unlink to delete the unwanted files.

위 내용은 PHP 파일 처리의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:PHP의 정적 메소드다음 기사:PHP의 정적 메소드