예를 들어 조작하려는 파일은 deco.txt입니다
한 가지 방법은
$file = fopen('demo.txt','a');
입니다.$content = 'xxxxxxxx';
fwrite($file,$content);
fclose($file);
가끔 파일이 자주 쓰이고 쓰여지는 경우가 있습니다. . 쓰기 오류를 방지하려면
flock($file,LOCK_EX);
flock($file,LOCK_UN);
다른 방법
file_put_contents() 사용;if(file_exists('demo.txt')){
$str = 'xxxxx';
$fp = 'deno.txt';
$fcontent = $str."rn";
file_put_contents($fp,$fcontent,FILE_APPEND | LOCK_EX );
}else{
echo '파일이 존재하지 않습니다.';
}