logmessage.php

来自「Professional PHP5 code for this book」· PHP 代码 · 共 21 行

PHP
21
字号
<?phpfunction logMessage($message) {  $LOGDIR = '/www/mysite/logs/';  //chmod 744 and chown nobody  $logFile = $LOGDIR . 'mysite.log';  $hFile = fopen($logFile, 'a+'); //open for appending, create                                  //the file if it doesn't exist  if(! is_resource($hFile)) {    printf("Unable to open %s for writing.  Check file permissions.", $logFile);    return false;  }  fwrite($hFile, $message);  fclose($hFile);  return true;}logMessage("Hello, log!\n");?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?