function fwrite() เขียนไฟล์
<?php $handle = fopen("test/log.txt", "a"); fwrite($handle, "Write To File By PHP"); fclose($handle); ?>
function fgets() อ่านไฟล์
<?php $handle = fopen("test/log.txt", "r"); while (!feof($handle)) { $buffer = fgets($handle, 4096); echo $buffer; } fclose($handle); ?>
function file_put_contents() เขียนไฟล์
<?php file_put_contents("test/log.txt", "Write To File By PHP", FILE_APPEND); ?>
function file_get_contents() อ่านไฟล์
<?php echo file_get_contents("test/log.txt"); ?>