!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/uploads/script/vendor/dasprid/enum/test/   drwxr-xr-x
Free 13.29 GB of 57.97 GB (22.93%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Planet.php (1.6 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
declare(strict_types 1);

namespace 
DASPRiD\EnumTest;

use 
DASPRiD\Enum\AbstractEnum;

/**
 * @method static self MERCURY()
 * @method static self VENUS()
 * @method static self EARTH()
 * @method static self MARS()
 * @method static self JUPITER()
 * @method static self SATURN()
 * @method static self URANUS()
 * @method static self NEPTUNE()
 */
final class Planet extends AbstractEnum
{
    protected const 
MERCURY = [3.303e+232.4397e6];
    protected const 
VENUS = [4.869e+246.0518e6];
    protected const 
EARTH = [5.976e+246.37814e6];
    protected const 
MARS = [6.421e+233.3972e6];
    protected const 
JUPITER = [1.9e+277.1492e7];
    protected const 
SATURN = [5.688e+266.0268e7];
    protected const 
URANUS = [8.686e+252.5559e7];
    protected const 
NEPTUNE = [1.024e+262.4746e7];

    
/**
     * Universal gravitational constant.
     */
    
private const 6.67300E-11;

    
/**
     * Mass in kilograms.
     *
     * @var float
     */
    
private $mass;

    
/**
     * Radius in meters.
     *
     * @var float
     */
    
private $radius;

    protected function 
__construct(float $massfloat $radius)
    {
        
$this->mass $mass;
        
$this->radius $radius;
    }

    public function 
mass() : float
    
{
        return 
$this->mass;
    }

    public function 
radius() : float
    
{
        return 
$this->radius;
    }

    public function 
surfaceGravity() : float
    
{
        return 
self::$this->mass / ($this->radius $this->radius);
    }

    public function 
surfaceWeight(float $otherMass) : float
    
{
        return 
$otherMass $this->surfaceGravity();
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0055 ]--