当前位置: 首页>>代码示例>>PHP>>正文


PHP log::get方法代码示例

本文整理汇总了PHP中log::get方法的典型用法代码示例。如果您正苦于以下问题:PHP log::get方法的具体用法?PHP log::get怎么用?PHP log::get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在log的用法示例。


在下文中一共展示了log::get方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: fetchStats

function fetchStats()
{
    global $dbAccess;
    require 'lib/log.php';
    $db = new mysqli($dbAccess['host'], $dbAccess['user'], $dbAccess['pass'], $dbAccess['db']);
    $log = new log($db);
    $data = $log->get();
    $min = array();
    $max = array();
    $midOver = 12;
    $dateOf = 6;
    $c = 0;
    $set = array();
    $setDate = false;
    $lastDate = false;
    foreach ($data as $item) {
        $min[] = array($item['ts'], $item['min']);
        $max[] = array($item['ts'], $item['max']);
    }
    return array($min, $max);
}
开发者ID:henningvs,项目名称:de-map,代码行数:21,代码来源:fetch.php

示例2: init

 if (init('action') == 'restore') {
     jeedom::restore(init('backup'), true);
     ajax::success();
 }
 if (init('action') == 'restoreCloud') {
     market::retoreBackup(init('backup'));
     ajax::success();
 }
 if (init('action') == 'getUpdateLog') {
     ajax::success(log::get('update', 0, 3000));
 }
 if (init('action') == 'getBackupLog') {
     ajax::success(log::get('backup', 0, 3000));
 }
 if (init('action') == 'getRestoreLog') {
     ajax::success(log::get('restore', 0, 3000));
 }
 if (init('action') == 'removeBackup') {
     jeedom::removeBackup(init('backup'));
     ajax::success();
 }
 if (init('action') == 'listBackup') {
     ajax::success(jeedom::listBackup());
 }
 if (init('action') == 'getConfiguration') {
     ajax::success(jeedom::getConfiguration(init('key'), init('default')));
 }
 if (init('action') == 'flushcache') {
     cache::flush();
     ajax::success();
 }
开发者ID:saez0pub,项目名称:core,代码行数:31,代码来源:jeedom.ajax.php

示例3: date

     }
     $bakcup_name = 'backup-' . jeedom::version() . '-' . date("d-m-Y-H\\hi") . '.tar.gz';
     $uploadfile = $uploaddir . '/' . $bakcup_name;
     if (!move_uploaded_file($_file['tmp_name'], $uploadfile)) {
         throw new Exception('Impossible de téléverser le fichier');
     }
     jeedom::restore($uploadfile, true);
     $jsonrpc->makeSuccess('ok');
 }
 if ($jsonrpc->getMethod() == 'jeeNetwork::backup') {
     jeedom::backup(true);
     $jsonrpc->makeSuccess('ok');
 }
 /*             * ************************Log*************************** */
 if ($jsonrpc->getMethod() == 'log::get') {
     $jsonrpc->makeSuccess(log::get($params['log'], $params['start'], $params['nbLine']));
 }
 if ($jsonrpc->getMethod() == 'log::list') {
     $jsonrpc->makeSuccess(log::liste());
 }
 if ($jsonrpc->getMethod() == 'log::empty') {
     $jsonrpc->makeSuccess(log::clear($params['log']));
 }
 if ($jsonrpc->getMethod() == 'log::remove') {
     $jsonrpc->makeSuccess(log::remove($params['log']));
 }
 /*             * ************************Messages*************************** */
 if ($jsonrpc->getMethod() == 'message::removeAll') {
     message::removeAll();
     $jsonrpc->makeSuccess('ok');
 }
开发者ID:GaelGRIFFON,项目名称:core,代码行数:31,代码来源:jeeApi.php

示例4: init

    }
    if (init('action') == 'clear') {
        log::clear(init('logfile'));
        ajax::success();
    }
    if (init('action') == 'remove') {
        log::remove(init('logfile'));
        ajax::success();
    }
    if (init('action') == 'removeAll') {
        log::removeAll();
        ajax::success();
    }
    if (init('action') == 'get') {
        if (init('jeeNetwork_id') != '') {
            $jeeNetwork = jeeNetwork::byId(init('jeeNetwork_id'));
            if (is_object($jeeNetwork)) {
                $jeeNetwork->getLog(init('log'), init('start', 0), init('nbLine', 99999));
            }
        } else {
            ajax::success(log::get(init('logfile'), init('start', 0), init('nbLine', 99999)));
        }
    }
    if (init('action') == 'getNbLine') {
        ajax::success(log::nbLine(init('logfile')));
    }
    throw new Exception(__('Aucune methode correspondante à : ', __FILE__) . init('action'));
    /*     * *********Catch exeption*************** */
} catch (Exception $e) {
    ajax::error(displayExeption($e), $e->getCode());
}
开发者ID:GaelGRIFFON,项目名称:core,代码行数:31,代码来源:log.ajax.php


注:本文中的log::get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。