本文整理汇总了PHP中Options::debugMode方法的典型用法代码示例。如果您正苦于以下问题:PHP Options::debugMode方法的具体用法?PHP Options::debugMode怎么用?PHP Options::debugMode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Options
的用法示例。
在下文中一共展示了Options::debugMode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: query
public static function query($query, $debugName = NULL)
{
if (Options::debugMode()) {
self::$queries[] = array('name' => $debugName, 'query' => $query);
}
$q = mysql_query($query);
if ($q === false) {
self::printQueries();
trigger_error(__CLASS__ . ": " . mysql_error(), E_USER_ERROR);
}
return $q;
}
示例2: columns
public static function columns($type)
{
$columns = array();
$class = new ReflectionClass($type);
while (true) {
$newColumns = $class->getStaticPropertyValue('columns', array());
if (Options::debugMode()) {
$intersection = array_intersect_key($columns, $newColumns);
if (count($intersection)) {
$intersection = implode(', ', array_keys($intersection));
trigger_error(__CLASS__ . ": The following data-columns appear more than once in the class hierarchy of '{$type}': {$intersection}", E_USER_ERROR);
}
}
$columns = array_merge($columns, $newColumns);
if ($class->getName() == __CLASS__) {
$columns['id'] = 'identifier';
return $columns;
}
$class = $class->getParentClass();
}
}
示例3: ucfirst
?>
</span> on line <span style="font-weight: bold;"><?php
echo $error["line"];
?>
</span>
</div>
<div class="errorheader"><?php
echo ucfirst($typeString[$error["number"]]);
?>
</div>
<?php
echo $error["message"];
?>
<div class="endfloat"></div>
<?php
if (Options::debugMode()) {
?>
<hr />
<div class="backtrace">
<table>
<?php
foreach ($error['backtrace'] as $bt_id => $bt_info) {
if ($bt_id > 0) {
?>
<tr>
<td style="text-align: right"><?php
echo $bt_id;
?>
:
<td style="text-align: left"><?php
if (isset($bt_info['file'])) {