|
function CI_Log()
{
date_default_timezone_set('PRC');
$config =& get_config();
$this->log_path = ($config['log_path'] != '') ? $config['log_path'] : BASEPATH.'logs/';
if ( ! is_dir($this->log_path) OR ! is_really_writable($this->log_path))
{
$this->_enabled = FALSE;
}
if (is_numeric($config['log_threshold']))
{
$this->_threshold = $config['log_threshold'];
}
if ($config['log_date_format'] != '')
{
$this->_date_fmt = $config['log_date_format'];
}
}
在CI的log.php里看到上页的红色字。。。。是什么意思。。。。
有时候看到很多代码都有 &这个符号。。。但不是很明白他的作用。。
ps:本人没有学过php的详细语法。。只是工作需要。基本拿来就用。。。。所以。。。还是很菜。。 |
|