1
2
3
4
5
<?php
$file_name = '/tmp/test.txt';
touch($file_name);
chmod($file_name, 0600);
?>