- r อ่านอย่างเดียว
- w สร้างไฟล์โดยถ้ามีไฟล์เดิมอยู่แล้วจะทำการลบทิ้งและสร้างไฟล์ขึ้นมาใหม่
- a กรณีที่มีไฟล์อยู่แล้วจะทำการเขียนไฟล์ต่อจากที่มีอยู่
<html> <head> <title>Test PHP & writefile</title> </head> <body> <? $strFileName = "Test.txt"; $objFopen = fopen($strFileName, 'w'); $strText1 = "123 Line1\r\n"; fwrite($objFopen, $strText1); $strText2 = "234 Line2\r\n"; fwrite($objFopen, $strText2); $strText3 = "345 Line3\r\n"; fwrite($objFopen, $strText3); if($objFopen) { echo "File writed."; } else { echo "File can not write"; } fclose($objFopen); ?> </body> </html>
No comments:
Post a Comment