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


PHP Spoon::getDebug方法代码示例

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


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

示例1: __construct

 /**
  * Class constructor.
  *
  * @param	string $template	The name of the template to compile.
  * @param	array $variables	The list of possible variables.
  * @param	bool $debug			Should we enable debug?
  */
 public function __construct($template, array $variables, $debug = null)
 {
     $this->template = (string) $template;
     $this->variables = $variables;
     // fallback to Spoon::getDebug if debug is not provided
     if ($debug === null) {
         $debug = Spoon::getDebug();
     }
     $this->debug = (bool) $debug;
 }
开发者ID:jeroendesloovere,项目名称:library,代码行数:17,代码来源:compiler.php

示例2: exceptionHandler


//.........这里部分代码省略.........
											</td>
										</tr>';
        }
    } else {
        $output .= '				<tr>
											<td style="vertical-align: top; font-family: Verdana, Tahoma, Arial; font-size: 10px; color: #000000;">No trace available.</td>
										</tr>';
    }
    // output the superglobal variables, if any
    $hasVars = false;
    foreach (array('GET', 'POST', 'COOKIE', 'FILES') as $superGlobal) {
        $hasVars |= count($GLOBALS['_' . $superGlobal]);
    }
    if ($hasVars) {
        $output .= '				</table>
									</td>
								<tr>
								<tr>
									<td style="vertical-align: top; font-family: Verdana, Tahoma, Arial; font-size: 10px; color: #000000;">&nbsp;</td>
								</tr>
								<!-- variables -->
								<tr>
									<td style="background-color: #EEEEEE; border: 1px solid #B2B2B2;">
										<h1 style="font-size: 12px; margin: 5px 5px 12px 5px; padding: 0 0 5px 0; color: #000000; font-family: Verdana, Tahoma, Arial; border-bottom: 1px solid #999999;">' . $name . ' &raquo; Variables</h1>
										<table width="550px;">' . "\n";
        foreach (array('GET', 'POST', 'COOKIE', 'FILES') as $superGlobal) {
            if (!empty($GLOBALS['_' . $superGlobal])) {
                $output .= '				<tr>
													<th width="110px" style="vertical-align: top; text-align: left; font-weight: 700; padding: 0 10px 0 10px; font-family: Verdana, Tahoma, Arial; font-size: 10px; color: #000000;">$_' . $superGlobal . '</th>
													<td style="vertical-align: top; font-family: Verdana, Tahoma, Arial; font-size: 10px; color: #000000;">
														<pre style="font-family: Courier; margin-bottom: 10px;">' . exceptionHandlerDumper($GLOBALS['_' . $superGlobal]) . '</pre>
													</td>
												</tr>' . "\n";
            }
        }
    }
    // continue output generation
    $output .= '				</table>
								</td>
							</tr>
						</table>
					</td>
					<td style="vertical-align: top; font-family: Verdana, Tahoma, Arial; font-size: 10px; color: #000000;">&nbsp;</td>
				</tr>
			</table>
		</body>
	</html>
	';
    // obfuscate
    if (method_exists($exception, 'getObfuscate') && count($exception->getObfuscate()) != 0) {
        $output = str_replace($exception->getObfuscate(), '***', $output);
    }
    // custom callback?
    if (Spoon::getExceptionCallback() != '') {
        // function
        if (!strpos(Spoon::getExceptionCallback(), '::')) {
            // function actually has been defined
            if (function_exists(Spoon::getExceptionCallback())) {
                call_user_func_array(Spoon::getExceptionCallback(), array($exception, $output));
            } else {
                exit('The exception callback function (' . Spoon::getExceptionCallback() . ') could not be found.');
            }
        } else {
            // method
            $method = explode('::', Spoon::getExceptionCallback());
            // 2 parameters and exists
            if (count($method) == 2 && is_callable(array($method[0], $method[1]))) {
                call_user_func_array(array($method[0], $method[1]), array($exception, $output));
            } else {
                exit('The exception callback function (' . Spoon::getExceptionCallback() . ') cound not be found.');
            }
        }
    } else {
        // on CLI we have no use for 2000 lines long report, show short info
        if (Spoon::inCli()) {
            echo $name . "\n";
            echo 'Message: ' . $exception->getMessage() . "\n";
            echo 'File: ' . $exception->getFile() . "\n";
            echo 'Line: ' . $exception->getLine() . "\n";
        } elseif (Spoon::getDebug()) {
            echo $output;
        } else {
            echo Spoon::getDebugMessage();
        }
    }
    // mail it?
    if (Spoon::getDebugEmail() != '') {
        // e-mail headers
        $headers = "MIME-Version: 1.0\n";
        $headers .= "Content-type: text/html; charset=iso-8859-15\n";
        $headers .= "X-Priority: 3\n";
        $headers .= "X-MSMail-Priority: Normal\n";
        $headers .= "X-Mailer: SpoonLibrary Webmail\n";
        $headers .= "From: Spoon Library <no-reply@spoon-library.com>\n";
        // send email
        @mail(Spoon::getDebugEmail(), 'Exception Occured', $output, $headers);
    }
    // stop script execution
    exit;
}
开发者ID:jeroendesloovere,项目名称:library,代码行数:101,代码来源:exception.php


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