1
0
Fork 0
php-coding/13.test6.php

8 lines
177 B
PHP

<?php
$filename = 'data/08.txt';
$fopen = fopen($filename, 'w');
flock($fopen,LOCK_EX);
fwrite($fopen,'hello world');
flock($fopen,LOCK_UN);
fclose($fopen);
readfile($filename);