本文整理汇总了PHP中waLog::path方法的典型用法代码示例。如果您正苦于以下问题:PHP waLog::path方法的具体用法?PHP waLog::path怎么用?PHP waLog::path使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类waLog
的用法示例。
在下文中一共展示了waLog::path方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: log
/**
* Write message into log file.
*
* @return bool
*/
public static function log($message, $file = 'error.log')
{
if (!self::$path) {
self::$path = waConfig::get('wa_path_log');
if (!self::$path) {
self::$path = wa()->getConfig()->getRootPath() . DIRECTORY_SEPARATOR . 'wa-log';
}
self::$path .= DIRECTORY_SEPARATOR;
}
$file = self::$path . $file;
if (!file_exists($file)) {
waFiles::create($file);
touch($file);
chmod($file, 0666);
} elseif (!is_writable($file)) {
return false;
}
$fd = fopen($file, 'a');
if (flock($fd, LOCK_EX)) {
fwrite($fd, PHP_EOL . date('Y-m-d H:i:s:') . PHP_EOL . $message);
fflush($fd);
flock($fd, LOCK_UN);
}
fclose($fd);
return true;
}
示例2: loadPath
protected static function loadPath()
{
if (!self::$path) {
self::$path = waConfig::get('wa_path_log');
if (!self::$path) {
self::$path = wa()->getConfig()->getRootPath() . DIRECTORY_SEPARATOR . 'wa-log';
}
self::$path .= DIRECTORY_SEPARATOR;
}
}