<?php $fd = fopen("./test.txt", "w"); flock($fd, LOCK_EX); sleep(10); fwrite($fd, "hightman"); flock($fd, LOCK_UN); fclose($fd); ?>;