Browse Source

error handling

pull/40/head
Savetheinternet 13 years ago
parent
commit
62db62669e
  1. 5
      inc/functions.php

5
inc/functions.php

@ -212,11 +212,12 @@
} }
function file_write($path, $data) { function file_write($path, $data) {
$fp = fopen($path, 'c'); if(!$fp = fopen($path, 'c'))
error('Unable to open file for writing: ' . $path);
// File locking // File locking
if(!flock($fp, LOCK_EX)) { if(!flock($fp, LOCK_EX)) {
error('Unable to lock file!'); error('Unable to lock file: ' . $path);
} }
// Truncate file // Truncate file

Loading…
Cancel
Save