victorgr wrote in php

Flock and fopen () with mode 'a'

Hello!

How do you think, need I use flock () for files which opens with mode 'a'.

For example:

$fp = fopen ($filename, 'a');
fwrite ($fp, $string);
close ($fp);


Need I use flock () there?