當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。