ฟังก์ชัน
fwrite()
เขียนไฟล์
ด้วยฟังก์ชัน fwrite()
รูปแบบ
fwrite(file , string , length)
file คือ resource file
string คือ ข้อมูลที่จะเขียน
length คือ ความยาวที่ต้องการอ่าน พารามิเตอร์นี้เป็น option
ตัวอย่าง
<?php
$file = fopen("test.txt","w");
echo fwrite($file,"Hello
World. Testing!");
fclose($file);
?>
ฟังก์ชันจะ return จำนวนของ byte ที่ถูกเขียน