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


PHP Options::debugMode方法代码示例

本文整理汇总了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;
 }
开发者ID:laiello,项目名称:cms-library,代码行数:12,代码来源:database.inc.php

示例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();
     }
 }
开发者ID:laiello,项目名称:cms-library,代码行数:21,代码来源:object.inc.php

示例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'])) {
开发者ID:laiello,项目名称:cms-library,代码行数:31,代码来源:error.tpl.php


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