pref_log.php 360 B

1234567891011121314
  1. <?php
  2. require_once("../config.php");
  3. $logstart = microtime(true)*1000;
  4. $strstart = date("h:i:sa");
  5. function PrefLog(){
  6. $file = fopen(_DIR_LOG_."/pref_".date("Y-m-d").".log","a");
  7. if($file){
  8. fputcsv($file,[$_SERVER['PHP_SELF'],$GLOBALS['strstart'],sprintf("%d",microtime(true)*1000-$GLOBALS['logstart']),$_SERVER['REMOTE_ADDR']]);
  9. fclose($file);
  10. }
  11. }
  12. ?>