throw error on non-writable file
This commit is contained in:
parent
d1a300e751
commit
f9c4c3ac1f
1 changed files with 5 additions and 1 deletions
|
@ -27,7 +27,11 @@ class Sync{
|
|||
if(!file_exists($pidfile)) {
|
||||
$pid = getmypid();
|
||||
$file = fopen($pidfile, 'w+');
|
||||
|
||||
if (!$file)
|
||||
echo $pidfile.' is not writeable.';
|
||||
error_log($pidfile.' is not writeable.');
|
||||
throw new SystemExit();
|
||||
}
|
||||
fwrite($file, $pid);
|
||||
fclose($file);
|
||||
|
||||
|
|
Loading…
Reference in a new issue