PHP 파일 작업 기능을 사용하여 파일을 읽고, 쓰고, 생성하고 삭제할 수 있습니다. 파일을 읽으려면 file_get_contents() 또는 fread() 함수를 사용하고, 파일을 쓰려면 file_put_contents() 또는 fwrite() 함수를 사용하고, 파일을 생성하고 삭제하려면 fopen() 및 unlink() 함수를 사용하십시오. 각기.
파일 작업에 PHP 함수 적용
PHP에서 파일 작업은 자주 수행되는 작업입니다. PHP는 파일 읽기, 쓰기, 생성 및 삭제와 같은 다양한 파일 작업을 쉽게 완료할 수 있는 풍부한 기능 라이브러리를 제공합니다.
파일 읽기
file_get_contents() 함수는 파일 전체의 내용을 문자열로 읽어옵니다.
$fileContent = file_get_contents('data.txt');
fread() 파일 포인터의 지정된 위치에서 지정된 길이의 내용을 문자열로 읽어오는 함수입니다.
$f = fopen('data.txt', 'r'); $fileContent = fread($f, 10); // 读取文件的前 10 个字节 fclose($f);
파일 쓰기
file_put_contents() 함수는 지정된 데이터를 파일에 씁니다.
file_put_contents('data.txt', 'Hello, world!');
fwrite() 함수는 지정된 파일 포인터에 데이터를 씁니다.
$f = fopen('data.txt', 'w'); fwrite($f, 'Hello, world!'); fclose($f);
파일 생성 및 삭제
fopen() 함수는 파일을 열어서 파일이 없으면 생성해줍니다.
$f = fopen('new_file.txt', 'w');
unlink() 함수는 지정된 파일을 삭제합니다.
unlink('data.txt');
실용 사례: 텍스트 파일 읽기 및 쓰기
내용이 포함된 data.txt
라는 텍스트 파일이 있다고 가정합니다. data.txt
的文本文件,内容为:
Hello, world! This is a sample text file.
我们可以使用 PHP 读取文件的内容并将其输出到网页:
$fileContent = file_get_contents('data.txt'); echo $fileContent;
要向 data.txt
文件中追加内容,我们可以使用 file_put_contents() 函数:
$newContent = "This is new content added to the file."; file_put_contents('data.txt', $newContent, FILE_APPEND);
上述代码将 "This is new content added to the file." 追加到 data.txt
rrreee
data.txt
파일에 콘텐츠를 추가하려면 🎜file_put_contents()🎜 함수를 사용할 수 있습니다. 🎜rrreee🎜위 코드는 " 파일에 추가된 새로운 콘텐츠입니다." data.txt
파일 끝에 추가됩니다. 🎜위 내용은 파일 작업에 PHP 함수 적용의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!