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


PHP FB::group方法代码示例

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


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

示例1: log

 /**
  * アプリケーションログを記録
  *
  * <pre>
  * アプリケーションログを記録します。
  * このログは画面上で確認できる一時的なスクリーンログです。
  * </pre>
  *
  * @param string $logKey   ログキー
  * @param mixed  $logValue 値
  *
  * @return void
  */
 public function log($logKey, $logValue = null)
 {
     if ($this->_config['debug'] !== true) {
         return;
     }
     $this->_logs[][$logKey] = $logValue;
     $showFirePHP = isset($_GET['_firelog']) || array_search($logKey, $this->_fbKeys) !== false;
     if (class_exists('FB', false) && $showFirePHP) {
         $color = $logValue ? 'black' : 'grey';
         FB::group($logKey, array('Collapsed' => true, 'Color' => $color));
         FB::log($logValue);
         FB::groupEnd();
     }
     if (!is_scalar($logValue)) {
         $logValue = print_r($logValue, true);
         $logValue = str_replace("\n", '', $logValue);
         $logValue = preg_replace("/\\s+/s", " ", $logValue);
     }
 }
开发者ID:ryo88c,项目名称:BEAR.Saturday,代码行数:32,代码来源:Log.php

示例2: onAfterInitialise

 /**
  * onAfterInitialise handler
  *
  * Register FirePHP libraries and set options according to paramters
  *
  * @access	public
  * @return null
  */
 public function onAfterInitialise()
 {
     require_once 'jfirephp' . DS . 'firephpcore' . DS . 'fb.php';
     // JFirePHP is installed and loaed
     define('JFIREPHP', 1);
     // Before doing any checks lets disable logging
     FB::setEnabled(false);
     // Check if the integration is set to enabled
     $enable = (bool) $this->params->get('enable', 0);
     // Only turn on if enabled
     if ($enable) {
         // if limited to debug mode, check JDEBUG
         $limittodebug = (bool) $this->params->get('limittodebug', 1);
         if ($limittodebug == false || JDEBUG) {
             // We are enabled and either in Debug mode, or it does not matter
             FB::setEnabled(true);
             $verbose = (bool) $this->params->get('verbose', 0);
             if ($verbose) {
                 FB::group('JFirePHP Startup', array('Collapsed' => true, 'Color' => '#FF4000'));
                 FB::log('JFirePHP enabled! - Verbose Output Mode: ON');
             }
             $options = array('maxObjectDepth' => intval($this->params->get('maxObjectDepth', 10)), 'maxArrayDepth' => intval($this->params->get('maxArrayDepth', 20)), 'useNativeJsonEncode' => intval($this->params->get('useNativeJsonEncode', 1)), 'includeLineNumbers' => intval($this->params->get('includeLineNumbers', 1)));
             FB::setOptions($options);
             if ($verbose) {
                 FB::log('JFirePHP: Options Set - maxObjectDepth:' . $options['maxObjectDepth'] . ' maxArrayDepth:' . $options['maxArrayDepth'] . ' useNativeJsonEncode:' . $options['useNativeJsonEncode'] . ' includeLineNumbers:' . $options['includeLineNumbers']);
             }
             $redirectphp = (bool) $this->params->get('redirectphp', 0);
             if ($redirectphp) {
                 // Convert E_WARNING, E_NOTICE, E_USER_ERROR, E_USER_WARNING, E_USER_NOTICE and
                 // E_RECOVERABLE_ERROR errors to ErrorExceptions and send all Exceptions to Firebug automatically
                 FB::registerErrorHandler(true);
                 FB::registerExceptionHandler();
                 FB::registerAssertionHandler(true, false);
                 if ($verbose) {
                     FB::log('JFirePHP: E_WARNING, E_NOTICE, E_USER_ERROR, E_USER_WARNING, E_USER_NOTICE and E_RECOVERABLE_ERROR redirected.');
                 }
             }
             if ($verbose) {
                 FB::groupEnd();
             }
         }
     }
 }
开发者ID:bellodox,项目名称:JFirePHP,代码行数:51,代码来源:jfirephp.php

示例3: OutputDatabaseProfile

 public static function OutputDatabaseProfile(QDatabaseBase $objDb = null)
 {
     if ($objDb == null) {
         $objDb = QApplication::$Database[1];
     }
     if ($objDb->EnableProfiling) {
         $objProfileArray = $objDb->Profile;
         $intCount = count($objProfileArray) / 2;
         if ($intCount == 0) {
             parent::log(QApplication::Translate('No queries were performed.'));
         } else {
             if ($intCount == 1) {
                 parent::log(QApplication::Translate('1 query was performed.'));
             } else {
                 $log = sprintf(QApplication::Translate('%s queries were performed.'), $intCount);
                 parent::log($log);
             }
         }
         for ($intIndex = 0; $intIndex < count($objProfileArray); $intIndex++) {
             $objDebugBacktrace = $objProfileArray[$intIndex]['objBacktrace'];
             $strQuery = $objProfileArray[$intIndex]['strQuery'];
             $dblTimeInfo = $objProfileArray[$intIndex]['dblTimeInfo'];
             $objArgs = array_key_exists('args', $objDebugBacktrace) ? $objDebugBacktrace['args'] : array();
             $strClass = array_key_exists('class', $objDebugBacktrace) ? $objDebugBacktrace['class'] : null;
             $strType = array_key_exists('type', $objDebugBacktrace) ? $objDebugBacktrace['type'] : null;
             $strFunction = array_key_exists('function', $objDebugBacktrace) ? $objDebugBacktrace['function'] : null;
             $strFile = array_key_exists('file', $objDebugBacktrace) ? $objDebugBacktrace['file'] : null;
             $strLine = array_key_exists('line', $objDebugBacktrace) ? $objDebugBacktrace['line'] : null;
             $called = QApplication::Translate('Called by') . ' ' . $strClass . $strType . $strFunction . '(' . implode(', ', $objArgs) . ')';
             parent::group($called);
             $file = $strFile . ' ' . QApplication::Translate('Line') . ': ' . $strLine;
             parent::log($file, QApplication::Translate('File'));
             parent::log($strQuery, QApplication::Translate('Query'));
             parent::log($dblTimeInfo, QApplication::Translate('Time Info'));
             parent::groupEnd();
         }
     } else {
         parent::log(QApplication::Translate('Profiling was not enabled for this database connection. To enable, ensure that ENABLE_PROFILING is set to TRUE.'));
     }
 }
开发者ID:Jobava,项目名称:narro,代码行数:40,代码来源:QFirebug.class.php

示例4: msg

 /**
  * (non-PHPdoc)
  * @see debugObject::msg()
  */
 public function msg($msg, $level = DEBUG_LOG)
 {
     if (!empty($msg) && $this->_level & $level) {
         if (DEBUG_INFO & $level) {
             if (is_array($msg)) {
                 FB::group(current($msg), array('Collapsed' => true));
                 FB::info($msg);
                 FB::groupEnd();
             } else {
                 FB::info($msg);
             }
         } elseif (DEBUG_ERROR & $level || DEBUG_STRICT & $level) {
             if (is_array($msg)) {
                 FB::group(current($msg), array('Collapsed' => true, 'Color' => '#FF0000'));
                 FB::error($msg);
                 FB::groupEnd();
             } else {
                 FB::error($msg);
             }
         } elseif (DEBUG_WARNING & $level) {
             if (is_array($msg)) {
                 FB::group(current($msg), array('Collapsed' => true, 'Color' => '#FF0000'));
                 FB::warn($msg);
                 FB::groupEnd();
             } else {
                 FB::warn($msg);
             }
         } else {
             if (is_array($msg)) {
                 FB::group(current($msg), array('Collapsed' => true));
                 FB::log($msg);
                 FB::groupEnd();
             } else {
                 FB::log($msg);
             }
         }
     }
 }
开发者ID:GGallery,项目名称:MDWEBTV-new,代码行数:42,代码来源:debugFirebug.class.php

示例5: getImages

 /**
  * Loads the class variable with
  * 
  * @return void
  * @access public
  */
 public function getImages()
 {
     FB::group("Image Loading Data");
     FB::send($this->dir, "Directory");
     if (($cache = Utilities::check_cache($this->dir)) !== FALSE) {
         $this->_imageArray = $cache;
     } else {
         if (is_dir($this->dir)) {
             // Open the directory for reading
             if ($folder = opendir($this->dir)) {
                 // Loop through the files in the directory
                 while (($file = readdir($folder)) !== FALSE) {
                     /*
                      * Verifies that the current value of $file
                      * refers to an existing file and that the 
                      * file is big enough not to throw an error.
                      */
                     if (is_file($this->dir . $file) && is_readable($this->dir . $file) && filesize($this->dir . $file) > 11) {
                         // Verify that the file is an image
                         //XXX Add EXIF check and fallback
                         if (exif_imagetype($this->dir . $file) !== FALSE) {
                             FB::send("The file is an image. Added to array.");
                             // Adds the image to the array
                             $this->_imageArray[] = $file;
                         }
                     }
                 }
                 // Sort the images according using natural sorting
                 natsort($this->_imageArray);
                 FB::send($this->_imageArray, "Image Array");
                 Utilities::save_cache($this->dir, $this->_imageArray);
             }
         }
     }
     FB::groupEnd();
 }
开发者ID:RobMacKay,项目名称:Helix,代码行数:42,代码来源:class.imagegallery.inc.php

示例6: v

/**
 * Debug print 'v' for CLI
 *
 * @param mixed  $values $values1, $values2 ...
 *
 * @return void
 */
function v($values = null)
{
    static $paramNum = 0;
    // be recursive
    $args = func_get_args();
    if (count($args) > 1) {
        foreach ($args as $arg) {
            p($arg);
        }
    }
    $trace = debug_backtrace();
    $i = $trace[0]['file'] === __FILE__ ? 1 : 0;
    $file = $trace[$i]['file'];
    $line = $trace[$i]['line'];
    $includePath = explode(":", get_include_path());
    // remove if include_path exists
    foreach ($includePath as $var) {
        if ($var != '.') {
            $file = str_replace("{$var}/", '', $file);
        }
    }
    $method = isset($trace[1]['class']) ? " ({$trace[1]['class']}" . '::' . "{$trace[1]['function']})" : '';
    $fileArray = file($file, FILE_USE_INCLUDE_PATH);
    $p = trim($fileArray[$line - 1]);
    unset($fileArray);
    $funcName = __FUNCTION__;
    preg_match("/{$funcName}\\((.+)[\\s,\\)]/is", $p, $matches);
    $varName = isset($matches[1]) ? $matches[1] : '';
    // for mulitple arg names
    $varNameArray = explode(',', $varName);
    if (count($varNameArray) === 1) {
        $paramNum = 0;
        $varName = $varNameArray[0];
    } else {
        $varName = $varNameArray[$paramNum];
        if ($paramNum === count($varNameArray) - 1) {
            var_dump($_ENV);
            $paramNum = 0;
        } else {
            $paramNum++;
        }
    }
    $label = "{$varName} in {$file} on line {$line}{$method}";
    if (strlen(serialize($values)) > 1000000) {
        $ouputMode = 'dump';
    }
    $label = is_object($values) ? ucwords(get_class($values)) . " {$label}" : $label;
    // if CLI
    if (PHP_SAPI === 'cli') {
        $colorOpenReverse = "[7;32m";
        $colorOpenBold = "[1;32m";
        $colorOpenPlain = "[0;32m";
        $colorClose = "[0m";
        echo $colorOpenReverse . "{$varName}" . $colorClose . " = ";
        var_dump($values);
        echo $colorOpenPlain . "in {$colorOpenBold}{$file}{$colorClose}{$colorOpenPlain} on line {$line}{$method}" . $colorClose . "\n";
        return;
    }
    $labelField = '<fieldset style="color:#4F5155; border:1px solid black;padding:2px;width:10px;">';
    $labelField .= '<legend style="color:black;font-size:9pt;font-weight:bold;font-family:Verdana,';
    $labelField .= 'Arial,,SunSans-Regular,sans-serif;">' . $label . '</legend>';
    if (class_exists('FB', false)) {
        $label = 'p() in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'];
        FB::group($label);
        FB::error($values);
        FB::groupEnd();
        return;
    }
    $pre = "<pre style=\"text-align: left;margin: 0px 0px 10px 0px; display: block; background: white; color: black; ";
    $pre .= "border: 1px solid #cccccc; padding: 5px; font-size: 12px; \">";
    if ($varName != FALSE) {
        $pre .= "<span style='color: #660000;'>" . $varName . '</span>';
    }
    $pre .= "<span style='color: #660000;'>" . htmlspecialchars($varName) . "</span>";
    $post = '&nbsp;&nbsp;' . "in <span style=\"color:gray\">{$file}</span> on line {$line}{$method}";
    echo $pre;
    var_dump($values);
    echo $post;
}
开发者ID:sssAlchemy,项目名称:Panda,代码行数:86,代码来源:util.php

示例7: onShutdownDebug

 /**
  * 最後のエラーを取得
  *
  * <pre>
  * _errorクエリーで最後のエラーを表示させます。
  * エラー表示がうまく行かない時に使用します。
  * </pre>
  *
  * <code>
  * ?_error                           エラー表示
  * ?_error=koriyama@bear-project.net エラーメール送信
  * ?_error=/tmp/error.log            エラーログファイルを書き込み
  * </code>
  *
  * @return void
  */
 public static function onShutdownDebug()
 {
     if (function_exists('FB')) {
         $errors = Panda::getOuterPathErrors();
         FB::group('errors', array('Collapsed' => true, 'Color' => 'gray'));
         foreach ($errors as $code => $error) {
             switch (true) {
                 case $code == E_WARNING || $code == E_USER_WARNING:
                     $fireLevel = FirePHP::WARN;
                     break;
                 case $code == E_NOTICE || $code == E_USER_NOTICE:
                     $fireLevel = FirePHP::INFO;
                     break;
                 case $code == E_STRICT || $code == E_DEPRECATED:
                     $fireLevel = FirePHP::LOG;
                     break;
                 default:
                     $fireLevel = FirePHP::ERROR;
                     break;
             }
             FB::send($error, '', $fireLevel);
         }
         FB::groupEnd();
     }
     $lastError = error_get_last();
     $err = print_r($lastError, true);
     if (isset($_GET['_error'])) {
         $errorTo = $_GET['_error'];
         if ($errorTo == '') {
             $errorCode = Panda::$phpError[$lastError['type']];
             Panda::error("{$errorCode} (Last Error)", "{$lastError['message']}", '', (array) $lastError);
             return;
         } elseif (strpos($errorTo, '@')) {
             error_log($err, 1, $errorTo);
         } elseif (is_writable(dirname($errorTo))) {
             error_log("{$err}\n\n", 3, $errorTo);
         } else {
             echo "<p style=\"color:red\">Error: Invalid destination for _error [{$errorTo}]</p>";
         }
     }
 }
开发者ID:ryo88c,项目名称:BEAR.Saturday,代码行数:57,代码来源:Util.php

示例8: OnGroupEnter

 public function OnGroupEnter($label)
 {
     $this->grouptime[] = microtime(true);
     \FB::group($label);
 }
开发者ID:reddragon010,项目名称:RG-ServerPanel,代码行数:5,代码来源:FirePhpLogger.php

示例9: array

<?php

FB::group('Test Group');
FB::send('Hello World');
FB::groupEnd();
FB::log('Log Message');
FB::info('Info Message');
FB::warn('Info Message');
FB::error('Info Message');
FB::trace('Trace to here');
FB::send('Trace to here', FirePHP::TRACE);
FB::table('2 SQL queries took 0.06 seconds', array(array('SQL Statement', 'Time', 'Result'), array('SELECT * FROM Foo', '0.02', array('row1', 'row2')), array('SELECT * FROM Bar', '0.04', array('row1', 'row2'))));
FB::dump('PHP Version', phpversion());
开发者ID:janym,项目名称:angular-yii,代码行数:13,代码来源:StaticClass.php

示例10: firePHP

 /**
  * Output for FirePHP
  * @uses http://www.firephp.org
  *
  * @return void
  */
 public static function firePHP()
 {
     echo "<pre>";
     // 页面汇总信息
     $table = array();
     $table[] = array('Total Time: ' . round(microtime(true) - $GLOBALS['_START_TIME'], 3));
     $table[] = array('Total Memory: ' . self::_size(round(memory_get_usage() - $GLOBALS['_START_MEM'], 3)));
     $table[] = array('Timezone: ' . date_default_timezone_get());
     isset($_SERVER['SERVER_ADDR']) && ($table[] = array('Server IP: ' . $_SERVER['SERVER_ADDR']));
     isset($_SERVER['HTTP_HOST']) && ($table[] = array('Server Host: ' . $_SERVER['HTTP_HOST']));
     FB::table('Debug Info', $table);
     // SQL
     if (isset($GLOBALS['_SQLs']) && !empty($GLOBALS['_SQLs'])) {
         // SQL Info
         $table = array();
         $table[] = array('Elapse', 'Host', 'Database', 'SQL', 'Params', 'RealSQL');
         foreach ($GLOBALS['_SQLs'] as $v) {
             $elapsed = round($v['time'] * 1000, 3);
             // SQL 耗时
             if ($v['params']) {
                 $table[] = array($elapsed . 'ms', $v['host'], $v['dbName'], $v['sql'], $v['params'], $v['realSql']);
             } else {
                 $table[] = array($elapsed . 'ms', $v['host'], $v['dbName'], $v['sql']);
             }
         }
         FB::table('SQL Info (' . count($GLOBALS['_SQLs']) . ' SQLs)', $table);
         // SQL Explain
         if (DEBUG_EXPLAIN_SQL) {
             $titles = array('id', 'select_type', 'table', 'type', 'possible_keys', 'key', 'key_len', 'ref', 'rows', 'Extra', 'sql');
             $table = array($titles);
             foreach ($GLOBALS['_SQLs'] as $v) {
                 if ($v['explain']) {
                     $line = array();
                     foreach ($titles as $title) {
                         $line[] = isset($v['explain'][$title]) ? $v['explain'][$title] : '-';
                     }
                     $table[] = $line;
                 }
             }
             FB::table('SQL Explain', $table);
         }
     }
     // 引入文件
     /*
     if ($files = get_included_files()) {
         $table = array();
         foreach ($files as $file) {
             $table[] = array($file);
         }
         FB::table('Included Files (' . count($files) . ' PHP files)', $table);
     }
     */
     print_r($table);
     // 全局变量、预定义变量
     FB::group('Predefined Variables', array('Collapsed' => true));
     FB::info($_COOKIE, '_COOKIE');
     FB::info($_ENV, '_ENV');
     FB::info($_FILES, '_FILES');
     FB::info($_GET, '_GET');
     FB::info($_POST, '_POST');
     FB::info($_REQUEST, '_REQUEST');
     FB::info($_SERVER, '_SERVER');
     isset($_SESSION) && FB::info($_SESSION, '_SESSION');
     FB::groupEnd();
 }
开发者ID:645248882,项目名称:CocoPHP,代码行数:71,代码来源:Debug.php

示例11: sendToFirebug

 private static function sendToFirebug()
 {
     $num_errors = count(self::$instance->errors);
     if ($num_errors == 1) {
         $msg = 'A PHP error have occured @ ' . date('g:i:s a');
     } else {
         $msg = $num_errors . ' PHP errors have occured @ ' . date('g:i:s a');
     }
     FB::group($msg, array('Collapsed' => self::$firebug_collapsed));
     foreach (self::$instance->errors as $err) {
         // some processing needs to be done to the errmsg because it can
         // at times contain html, which we don't want in firebug.
         if ($err['exception'] === false) {
             FB::error(self::$error_lookup[$err['number']] . ': ' . strip_tags(html_entity_decode($err['message'], ENT_QUOTES)) . ': ' . $err['file'] . ' on line: ' . $err['line']);
         } else {
             FB::error('Uncaught Exception: ' . $err['exception'] . '[' . $err['number'] . ']: ' . strip_tags(html_entity_decode($err['message'], ENT_QUOTES)) . ': ' . $err['file'] . ' on line: ' . $err['line']);
         }
         if (count($err['trace']) > 0) {
             FB::log("Trace:");
             foreach ($err['trace'] as $i => $t) {
                 FB::log($t['class'] . $t['type'] . $t['function'] . '(' . implode(', ', $t['args']) . ') in file ' . $t['file'] . ' on line: ' . $t['line'], $i + 1);
             }
         }
         FB::log("");
     }
     FB::groupEnd();
 }
开发者ID:c13arm,项目名称:MUN-School-Work,代码行数:27,代码来源:ErrorHandler.class.php

示例12: debugShowResource

 /**
  * リソースのデバック表示
  *
  * firePHPコンソールにリソースを表示します。
  *
  * @param BEAR_Ro $ro リソースオブジェクト
  *
  * @return void
  */
 public function debugShowResource(BEAR_Ro $ro)
 {
     $config = $ro->getConfig();
     if (!isset($config['method'])) {
         return;
     }
     $labelUri = "[resource] {$config['method']} {$config['uri']}";
     $labelUri .= $config['values'] ? '?' . http_build_query($config['values']) : "";
     $body = $ro->getBody();
     if (is_array($body) && isset($body[0]) && is_array($body[0])) {
         // bodyが表構造と仮定
         $table = array();
         $table[] = array_values(array_keys($body[0]));
         foreach ((array) $body as $key => $val) {
             $table[] = array_values((array) $val);
         }
         FB::table($labelUri, $table);
     } else {
         FB::group("{$labelUri}", array('Collapsed' => true));
         FB::log($body);
         FB::groupEnd();
     }
 }
开发者ID:ryo88c,项目名称:BEAR.Saturday,代码行数:32,代码来源:Debug.php

示例13: p


//.........这里部分代码省略.........
         ob_start();
     }
     // Roならarrayに
     if (class_exists('BEAR_Ro', false) && $values instanceof BEAR_Ro) {
         $values = array('code' => $values->getCode(), 'headers' => $values->header, 'body' => $values->body, 'links' => $values->links);
     }
     if ($ouputMode === null && is_scalar($values)) {
         $ouputMode = 'dump';
     }
     $trace = isset($options['trace']) ? $options['trace'] : debug_backtrace();
     $file = $trace[0]['file'];
     $line = $trace[0]['line'];
     $includePath = explode(":", get_include_path());
     $method = isset($trace[1]['class']) ? " ({$trace[1]['class']}" . '::' . "{$trace[1]['function']})" : '';
     $fileArray = file($file, FILE_USE_INCLUDE_PATH);
     $p = trim($fileArray[$line - 1]);
     unset($fileArray);
     preg_match("/p\\((.+)[\\s,\\)]/is", $p, $matches);
     $varName = isset($matches[1]) ? $matches[1] : '';
     $label = isset($options['label']) ? $options['label'] : "{$varName} in {$file} on line {$line}{$method}";
     if (strlen(serialize($values)) > 1000000) {
         $ouputMode = 'dump';
     }
     $label = is_object($values) ? ucwords(get_class($values)) . " {$label}" : $label;
     // if CLI
     if (PHP_SAPI === 'cli') {
         $colorOpenReverse = "[7;32m";
         $colorOpenBold = "[1;32m";
         $colorOpenPlain = "[0;32m";
         $colorClose = "[0m";
         echo $colorOpenReverse . "{$varName}" . $colorClose . " = ";
         var_dump($values);
         echo $colorOpenPlain . "in {$colorOpenBold}{$file}{$colorClose}{$colorOpenPlain} on line {$line}{$method}" . $colorClose . "\n";
         return;
     }
     if (Panda::isCliOutput()) {
         if (class_exists('FB', false)) {
             $ouputMode = 'fire';
         } else {
             $ouputMode = 'syslog';
         }
     }
     $labelField = '<fieldset style="color:#4F5155; border:1px solid black;padding:2px;width:10px;">';
     $labelField .= '<legend style="color:black;font-size:9pt;font-weight:bold;font-family:Verdana,';
     $labelField .= 'Arial,,SunSans-Regular,sans-serif;">' . $label . '</legend>';
     switch ($ouputMode) {
         case 'v':
         case 'var':
             if (class_exists('Var_Dump', false)) {
                 Var_Dump::displayInit(array('display_mode' => 'HTML4_Text'));
                 print $labelField;
                 Var_Dump::display($values);
             } else {
                 ob_start();
                 var_export($values);
                 $var = ob_get_clean();
                 print $labelField;
                 echo "<pre>" . $var . '</pre>';
             }
             print "</fieldset>";
             break;
         case 'd':
         case 'dump':
             $file = "<a style=\"color:gray; text-decoration:none;\" target=\"_blank\" href=/__panda/edit/?file={$file}&line={$line}>{$file}</a>";
             $dumpLabel = isset($options['label']) ? $options['label'] : "in <span style=\"color:gray\">{$file}</span> on line {$line}{$method}";
             echo self::dump($values, null, array('label' => $dumpLabel, 'var_name' => $varName));
             break;
         case 'e':
         case 'export':
             echo "{$labelField}<pre>" . var_export($values, true);
             echo '</fieldset></pre>';
             break;
         case 'h':
         case 'header':
             header("x-panda-{$label}", print_r($values, true));
             break;
         case 's':
         case 'syslog':
             syslog(LOG_DEBUG, "label:{$label}" . print_r($values, true));
             break;
         case 'f':
         case 'fire':
             if (class_exists('FB', false)) {
                 $label = isset($options['label']) ? $options['label'] : 'p() in ' . $trace[0]['file'] . ' on line ' . $trace[0]['line'];
                 FB::group($label);
                 FB::error($values);
                 FB::groupEnd();
             }
             break;
         case null:
         case 'printa':
         case 'print_a':
         default:
             $options = "max_y:100;pickle:1;label:{$label}";
             print_a($values, $options);
     }
     if (isset($options['return']) && $options['return'] === true) {
         return ob_get_clean();
     }
 }
开发者ID:sssAlchemy,项目名称:Panda,代码行数:101,代码来源:Debug.php

示例14: save_comment

 public function save_comment()
 {
     // For debugging
     FB::group("Saving Comment");
     $comment = $this->_validate_comment_data();
     if ($comment === FALSE) {
         // Debugging info
         FB::send("Comment failed validation.");
         FB::groupEnd();
         $loc = array_shift(explode('?', $_SERVER['HTTP_REFERER']));
         if (!strpos($loc, '#add-comment')) {
             $loc .= '#add-comment';
         }
         header('Location: ' . $loc);
         exit;
     }
     // Create a new comment entry, or update one if a comment_id is supplied
     $sql = "INSERT INTO `" . DB_NAME . "`.`" . DB_PREFIX . "comments`\n                (\n                    `comment_id`, `entry_id`, `name`, `email`, `url`,\n                    `remote_address`, `comment`, `subscribed`, `thread_id`,\n                    `created`\n                )\n                VALUES\n                (\n                    :comment_id, :entry_id, :name, :email, :url,\n                    :remote_address, :comment, :subscribed, :thread_id, :created\n                )\n                ON DUPLICATE KEY UPDATE\n                    `name`=:name, `email`=:email, `url`=:url,\n                    `comment`=:comment;";
     try {
         // Create a prepared statement
         $stmt = $this->db->prepare($sql);
         // Bind the query parameters
         $stmt->bindParam(":comment_id", $comment->comment_id, PDO::PARAM_INT);
         $stmt->bindParam(":entry_id", $comment->entry_id, PDO::PARAM_INT);
         $stmt->bindParam(":name", $comment->name, PDO::PARAM_STR);
         $stmt->bindParam(":email", $comment->email, PDO::PARAM_STR);
         $stmt->bindParam(":url", $comment->url, PDO::PARAM_STR);
         $stmt->bindParam(":remote_address", $comment->remote_address, PDO::PARAM_STR);
         $stmt->bindParam(":comment", $comment->comment, PDO::PARAM_STR);
         $stmt->bindParam(":subscribed", $comment->subscribed, PDO::PARAM_INT);
         $stmt->bindParam(":thread_id", $comment->thread_id, PDO::PARAM_INT);
         $stmt->bindParam(":created", $comment->created, PDO::PARAM_INT);
         // Execute the statement and free the resources
         $stmt->execute();
         if ($stmt->errorCode() !== '00000') {
             $err = $stmt->errorInfo();
             ECMS_Error::log_exception(new Exception($err[2]));
         } else {
             $stmt->closeCursor();
             if ((int) $comment->comment_id === 0) {
                 $comment->comment_id = $this->db->lastInsertId();
             }
             // Send a comment notification to all subscribers
             $this->_send_comment_notification($comment);
             unset($this->_sdata->temp);
             $this->_suspend_commenter(15);
             $this->_sdata->verified = 1;
             $loc = array_shift(explode('?', array_shift(explode('#', $_SERVER['HTTP_REFERER']))));
             header('Location: ' . $loc . '#comment-' . $comment->comment_id);
             exit;
         }
     } catch (Exception $e) {
         ECMS_Error::log_exception($e);
     }
 }
开发者ID:RobMacKay,项目名称:Helix,代码行数:55,代码来源:class.comments.inc.php

示例15: initClassPathCache

 private function initClassPathCache()
 {
     $dir = $this->getDirectoryList();
     $count = 0;
     $max = 100;
     if ($this->debug) {
         FB::group(__METHOD__, array('Collapsed' => true));
     }
     if ($this->debug) {
         fb("Walk the itereator: keys are full paths!", "WARN");
     }
     foreach ($dir as $key => $fileInfo) {
         if ($this->debug) {
             fb($fileInfo->getRealPath(), "key = {$key}");
         }
         $this->cache[$key] = $fileInfo->getRealPath();
     }
     if ($this->debug) {
         FB::groupEnd();
     }
 }
开发者ID:Teino1978-Corp,项目名称:Teino1978-Corp-flickr_.idea_.name,代码行数:21,代码来源:flickr_web_app_classes_AutoLoader.php


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