(PECL seaslog >=1.0.0)
SeasLog::getDatetimeFormat — 获取 SeasLog 日期格式
获取 SeasLog 日期格式。 使用函数 SeasLog::getDatetimeFormat() 将获取 php.ini(seaslog.ini) 配置的 seaslog.default_datetime_format 值。
此函数没有参数。
获取 SeasLog 配置中的 seaslog.default_datetime_format 值。 使用函数 SeasLog::setDatetimeFormat() 将改变本函数的取值。
Example #1 SeasLog::getDatetimeFormat() example
<?php
var_dump(SeasLog::getDateTimeFormat());
var_dump(SeasLog::setDateTimeFormat('Ymd His'));
var_dump(SeasLog::getDateTimeFormat());
?>
以上例程的输出类似于:
string(11) "Y-m-d H:i:s" bool(true) string(7) "Ymd His"