Ejemplo n.º 1
0
  <tr>
    <td style="vertical-align: top">$_SESSION:</td>
    <td class="monospace">
<?php 
if (isset($_SESSION) && is_array($_SESSION) && count($_SESSION)) {
    echo nl2br(clean_var_info($_SESSION));
}
// if
?>
    </td>
  </tr>
  
<?php 
if (function_exists('benchmark_timer_total_execution_time')) {
    ?>
  <tr>
    <td colspan="2" class="bold">Execution time:</th>
  </tr>
  <tr>
    <td colspan="2">Total execution time: <?php 
    echo benchmark_timer_total_execution_time();
    ?>
 seconds</td>
  </tr>
<?php 
}
// if
?>
  
</table>
</div>
Ejemplo n.º 2
0
<?php } // if ?>
    </td>
  </tr>
  <tr>
    <td style="vertical-align: top">$_COOKIE:</td>
    <td class="monospace">
<?php if(isset($_COOKIE) && is_array($_COOKIE) && count($_COOKIE)) { ?>
<?php echo nl2br(clean_var_info($_COOKIE)) ?>
<?php } // if ?>
    </td>
  </tr>
  <tr>
    <td style="vertical-align: top">$_SESSION:</td>
    <td class="monospace">
<?php if(isset($_SESSION) && is_array($_SESSION) && count($_SESSION)) { ?>
<?php echo nl2br(clean_var_info($_SESSION)) ?>
<?php } // if ?>
    </td>
  </tr>
  
<?php if(function_exists('benchmark_timer_total_execution_time')) { ?>
  <tr>
    <td colspan="2" class="bold">Execution time:</td>
  </tr>
  <tr>
    <td colspan="2">Total execution time: <?php echo benchmark_timer_total_execution_time() ?> seconds</td>
  </tr>
<?php } // if ?>
  
</table>
</div>