PHP 파일 쓰기
From IT Wiki
Revision as of 11:43, 18 February 2023 by 계발자 (talk | contribs) (새 문서: == 파일 열기 == * 쓰기 모드(w)로 파일을 연다. * fopen을 사용한다. <syntaxhighlight lang="php"> <?php $myFile = fopen("testfile.txt", "w") or die("Unable to open file!"); ?> </syntaxhighlight> == 파일 쓰기 == * fwrite를 이용해 파일을 쓴다. <syntaxhighlight lang="php" line="1"> <?php $myfile = fopen("newfile.txt", "w") or die("Unable to open file!"); $txt = "John Doe\n"; fwrite($myfile, $txt); $txt = "Jane Doe\n"; fwrite($...)
파일 열기
- 쓰기 모드(w)로 파일을 연다.
- fopen을 사용한다.
<?php
$myFile = fopen("testfile.txt", "w") or die("Unable to open file!");
?>
파일 쓰기
- fwrite를 이용해 파일을 쓴다.
<?php
$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");
$txt = "John Doe\n";
fwrite($myfile, $txt);
$txt = "Jane Doe\n";
fwrite($myfile, $txt);
fclose($myfile);
?>
- 결과는 아래와 같다. (newfile.txt)
John Doe Jane Doe