简单对数系统

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单对数系统相关的知识,希望对你有一定的参考价值。

  1. <?php
  2.  
  3.  
  4. function wlog($m=""){
  5. $myFile = "/tmp/shib.log"; #log path
  6. $fh = fopen($myFile, 'a') or die("can't open file");
  7. $stringData = $m." ";
  8.  
  9. if($m==""){$stringData = " ";};
  10. fwrite($fh, $stringData);
  11. fclose($fh);
  12. };
  13.  
  14.  
  15. /* Usage :
  16.  
  17. wlog("Write this to log...");
  18. wlog();
  19. wlog("New line...");
  20.  
  21. ----
  22.  
  23. System usage:
  24.  
  25. tail -f /tmp/shib.log
  26.  
  27.  
  28.  
  29. */
  30.  
  31. ?>

以上是关于简单对数系统的主要内容,如果未能解决你的问题,请参考以下文章