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


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

namespace Guzzle\Http;

use 
Guzzle\Stream\Stream;

/**
 * Abstract decorator used to wrap entity bodies
 */
class AbstractEntityBodyDecorator implements EntityBodyInterface
{
    
/** @var EntityBodyInterface Decorated entity body */
    
protected $body;

    
/**
     * @param EntityBodyInterface $body Entity body to decorate
     */
    
public function __construct(EntityBodyInterface $body)
    {
        
$this->body $body;
    }

    public function 
__toString()
    {
        return (string) 
$this->body;
    }

    
/**
     * Allow decorators to implement custom methods
     *
     * @param string $method Missing method name
     * @param array  $args   Method arguments
     *
     * @return mixed
     */
    
public function __call($method, array $args)
    {
        return 
call_user_func_array(array($this->body$method), $args);
    }

    public function 
close()
    {
        return 
$this->body->close();
    }

    public function 
setRewindFunction($callable)
    {
        
$this->body->setRewindFunction($callable);

        return 
$this;
    }

    public function 
rewind()
    {
        return 
$this->body->rewind();
    }

    public function 
compress($filter 'zlib.deflate')
    {
        return 
$this->body->compress($filter);
    }

    public function 
uncompress($filter 'zlib.inflate')
    {
        return 
$this->body->uncompress($filter);
    }

    public function 
getContentLength()
    {
        return 
$this->getSize();
    }

    public function 
getContentType()
    {
        return 
$this->body->getContentType();
    }

    public function 
getContentMd5($rawOutput false$base64Encode false)
    {
        
$hash Stream::getHash($this'md5'$rawOutput);

        return 
$hash && $base64Encode base64_encode($hash) : $hash;
    }

    public function 
getContentEncoding()
    {
        return 
$this->body->getContentEncoding();
    }

    public function 
getMetaData($key null)
    {
        return 
$this->body->getMetaData($key);
    }

    public function 
getStream()
    {
        return 
$this->body->getStream();
    }

    public function 
setStream($stream$size 0)
    {
        
$this->body->setStream($stream$size);

        return 
$this;
    }

    public function 
detachStream()
    {
        
$this->body->detachStream();

        return 
$this;
    }

    public function 
getWrapper()
    {
        return 
$this->body->getWrapper();
    }

    public function 
getWrapperData()
    {
        return 
$this->body->getWrapperData();
    }

    public function 
getStreamType()
    {
        return 
$this->body->getStreamType();
    }

    public function 
getUri()
    {
        return 
$this->body->getUri();
    }

    public function 
getSize()
    {
        return 
$this->body->getSize();
    }

    public function 
isReadable()
    {
        return 
$this->body->isReadable();
    }

    public function 
isRepeatable()
    {
        return 
$this->isSeekable() && $this->isReadable();
    }

    public function 
isWritable()
    {
        return 
$this->body->isWritable();
    }

    public function 
isConsumed()
    {
        return 
$this->body->isConsumed();
    }

    
/**
     * Alias of isConsumed()
     * {@inheritdoc}
     */
    
public function feof()
    {
        return 
$this->isConsumed();
    }

    public function 
isLocal()
    {
        return 
$this->body->isLocal();
    }

    public function 
isSeekable()
    {
        return 
$this->body->isSeekable();
    }

    public function 
setSize($size)
    {
        
$this->body->setSize($size);

        return 
$this;
    }

    public function 
seek($offset$whence SEEK_SET)
    {
        return 
$this->body->seek($offset$whence);
    }

    public function 
read($length)
    {
        return 
$this->body->read($length);
    }

    public function 
write($string)
    {
        return 
$this->body->write($string);
    }

    public function 
readLine($maxLength null)
    {
        return 
$this->body->readLine($maxLength);
    }

    public function 
ftell()
    {
        return 
$this->body->ftell();
    }

    public function 
getCustomData($key)
    {
        return 
$this->body->getCustomData($key);
    }

    public function 
setCustomData($key$value)
    {
        
$this->body->setCustomData($key$value);

        return 
$this;
    }
}

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