!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/apex_tdfonline/php/3ros/PhpDocumentor/tutorials/phpDocumentor/examples/   drwxr-xr-x
Free 15.63 GB of 61.93 GB (25.24%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     sample2.php (2.9 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Sample File 2, phpDocumentor Quickstart
 * 
 * This file demonstrates the rich information that can be included in
 * in-code documentation through DocBlocks and tags.
 * @author Greg Beaver <cellog@php.net>
 * @version 1.0
 * @package sample
 */
// sample file #1
/**
 * Dummy include value, to demonstrate the parsing power of phpDocumentor
 */
include_once 'sample3.php';

/**
 * Special global variable declaration DocBlock
 * @global integer $GLOBALS['_myvar']
 * @name $_myvar
 */ 
$GLOBALS['_myvar'] = 6;

/**#@+
 * Constants
 */
/**
 * first constant
 */
define('testing'6);
/**
 * second constant
 */
define('anotherconstant'strlen('hello'));

/**
 * A sample function docblock
 * @global string document the fact that this function uses $_myvar
 * @staticvar integer $staticvar this is actually what is returned
 * @param string $param1 name to declare
 * @param string $param2 value of the name
 * @return integer
 */
function firstFunc($param1$param2 'optional')
{
    static 
$staticvar 7;
    global 
$_myvar;
    return 
$staticvar;
}

/**
 * The first example class, this is in the same package as the
 * procedural stuff in the start of the file
 * @package sample
 * @subpackage classes
 */
class myclass {
    
/**
     * A sample private variable, this can be hidden with the --parseprivate
     * option
     * @access private
     * @var integer|string
     */
    
var $firstvar 6;
    
/**
     * @link http://www.example.com Example link
     * @see myclass()
     * @uses testing, anotherconstant
     * @var array
     */
    
var $secondvar =
        array(
            
'stuff' =>
                array(
                    
6,
                    
17,
                    
'armadillo'
                
),
            
testing => anotherconstant
        
);

    
/**
     * Constructor sets up {@link $firstvar}
     */
    
function myclass()
    {
        
$this->firstvar 7;
    }
    
    
/**
     * Return a thingie based on $paramie
     * @param boolean $paramie
     * @return integer|babyclass
     */
    
function parentfunc($paramie)
    {
        if (
$paramie) {
            return 
6;
        } else {
            return new 
babyclass;
        }
    }
}

/**
 * @package sample1
 */
class babyclass extends myclass {
    
/**
     * The answer to Life, the Universe and Everything
     * @var integer
     */
    
var $secondvar 42;
    
/**
     * Configuration values
     * @var array
     */
    
var $thirdvar;
    
    
/**
     * Calls parent constructor, then increments {@link $firstvar}
     */
    
function babyclass()
    {
        
parent::myclass();
        
$this->firstvar++;
    }
    
    
/**
     * This always returns a myclass
     * @param ignored $paramie
     * @return myclass
     */
    
function parentfunc($paramie)
    {
        return new 
myclass;
    }
}
?>

:: 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.2921 ]--