개발/php
php 파일 쓰기
철권
2018. 7. 30. 12:42
728x90
$fp = fopen('data.txt', 'w');
fwrite($fp, '1');
fwrite($fp, '23');
fclose($fp);
728x90
반응형