⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 logmessage.php

📁 Professional PHP5 code for this book
💻 PHP
字号:
<?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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -