鼠笼管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
283 B

<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 15-5-9
* Time: 下午3:17
*/
class LogUtils
{
static $debug = true;
public static function debug($log)
{
if (LogUtils::$debug)
echo date('y-m-d h:i:s',time()).($log) . "\r\n";
}
}