php file_put_contents ...

0 Cevap php
<?php
$file = 'people.txt';
// The new person to add to the file
$person = "John Smith\n";
// Write the contents to the file, 
// using the FILE_APPEND flag to append the content to the end of the file
// and the LOCK_EX flag to prevent anyone else writing to the file at the same time
 file_put_contents($file, $person, FILE_APPEND | LOCK_EX);
?>

Bu, dosyanın sonuna içeriği ekler. i dosyanın başında yeni yazmak istiyorum.

0 Cevap