file_put_contents () belgeleri üzerinde, şunları söylüyor:
FILE_APPEND:
Mutually exclusive with LOCK_EX since appends are atomic and thus there is no reason to lock.
LOCK_EX:
FILE_APPEND ile birbirini dışlayan.
Oysa, birkaç satır ben aşağıdaki kodu bakın feryat:
<?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);
?>
Yani, FILE_APPEND ve LOCK_EX bayraklar birbirini dışlayan ya da değil mi? Eğer evet ise, neden örnekte kullanabilirim? Bu kötü belgelerin bir durumda mı?
Giriş için teşekkür ederiz!