$file = 'file.txt';
$content = 'Hello, world!';
file_put_contents($file, $content);
$file = 'file.txt';
$content = 'Hello, world!';
$handle = fopen($file, 'w');
fwrite($handle, $content);
fclose($handle);
$file = 'file.txt';
$content = 'Hello, world!';
file_put_contents($file, $content, FILE_APPEND);
$file = 'file.txt';
$content = 'Hello, world!';
$handle = fopen($file, 'a');
fwrite($handle, $content);
fclose($handle);
$file = 'file.txt';
$content = 'Hello, world!';
file_put_contents($file, $content, LOCK_EX);