!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/lampp/lib/php/doc/Var_Dump/   drwxr-xr-x
Free 13.77 GB of 61.93 GB (22.23%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     example-1.php (2.04 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
header
('Content-Type: application/xhtml+xml; charset=utf-8');
header('Vary: Accept'); 
?>
<?xml version
="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title>An XHTML 1.0 Strict standard template</title>
    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
    <meta http-equiv="Content-Style-Type" content="text/css" />
</head>
<body>

<?php

include_once 'Var_Dump.php';

echo 
'<h1>example1.php : displaying a variable</h1>';

/*
 * example1.php : displaying a variable
 *
 * To display a variable :
 *
 *   Var_Dump::display($variable);
 *
 * To return a variable :
 *
 *   $str = Var_Dump::display($variable, TRUE);
 *
 */

/*
 * Initialise the HTML4 Table rendering
 */

Var_Dump::displayInit(array('display_mode' => 'HTML4_Table'));

/*
 * Displays an array
 */

echo '<h2>Array</h2>';

$fileHandler tmpfile();
$linkedArray = array('John''Jack''Bill');
$array = array(
    
'key-1' => 'The quick brown fox jumped over the lazy dog',
    
'key-2' => 234,
    
'key-3' => array(
        
'key-3-1' => 31.789,
        
'key-3-2' => & $linkedArray,
        
'file'    => $fileHandler
    
),
    
'key-4' => NULL
);
Var_Dump::display($array);

/*
 * Displays an object (with recursion)
 */

echo '<h2>Object (Recursive)</h2>';

class 
c_parent {
    function 
c_parent() {
        
$this->myChild = new child($this);
        
$this->myName 'c_parent';
    }
}
class 
child {
    function 
child(& $c_parent) {
        
$this->myParent = & $c_parent;
    }
}
$recursiveObject = new c_parent();
Var_Dump::display($recursiveObject);

/*
 * Displays a classic object
 */

echo '<h2>Object (Classic)</h2>';

class 
test {
    var 
$foo 0;
    var 
$bar '';
    function 
get_foo() {
        return 
$this->foo;
    }
    function 
get_bar() {
        return 
$this->bar;
    }
}
$object = new test();
$object->foo 753;
$object->bar '357';
Var_Dump::display($object);

fclose($fileHandler);

?>

</body>
</html>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.4972 ]--