Skip to content

Instantly share code, notes, and snippets.

@sunny
Created November 7, 2011 10:10
Show Gist options
  • Save sunny/1344603 to your computer and use it in GitHub Desktop.
Save sunny/1344603 to your computer and use it in GitHub Desktop.
<?
function log_info($s) {
$fd = @fopen(LOG_FILE, 'a');
if (!$fd)
throw new Exception(sprintf(l("Impossible d'ouvrir le fichier %s en écriture"), LOG_FILE));
$saved = @fwrite($fd, $s . "\n");
if (!$saved)
throw new Exception(sprintf(l("Impossible d'écrire dans le fichier %s"), LOG_FILE));
fclose($fd);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment