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


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

namespace Guzzle\Service\Resource;

use 
Guzzle\Common\Collection;
use 
Guzzle\Service\Description\Parameter;

/**
 * Default model created when commands create service description model responses
 */
class Model extends Collection
{
    
/** @var Parameter Structure of the model */
    
protected $structure;

    
/**
     * @param array     $data      Data contained by the model
     * @param Parameter $structure The structure of the model
     */
    
public function __construct(array $data = array(), Parameter $structure null)
    {
        
$this->data $data;
        
$this->structure $structure;
    }

    
/**
     * Get the structure of the model
     *
     * @return Parameter
     */
    
public function getStructure()
    {
        return 
$this->structure ?: new Parameter();
    }

    
/**
     * Provides debug information about the model object
     *
     * @return string
     */
    
public function __toString()
    {
        
$output 'Debug output of ';
        if (
$this->structure) {
            
$output .= $this->structure->getName() . ' ';
        }
        
$output .= 'model';
        
$output str_repeat('='strlen($output)) . "\n" $output "\n" str_repeat('='strlen($output)) . "\n\n";
        
$output .= "Model data\n-----------\n\n";
        
$output .= "This data can be retrieved from the model object using the get() method of the model "
            
"(e.g. \$model->get(\$key)) or accessing the model like an associative array (e.g. \$model['key']).\n\n";
        
$lines array_slice(explode("\n"trim(print_r($this->toArray(), true))), 2, -1);
        
$output .=  implode("\n"$lines);

        if (
$this->structure) {
            
$output .= "\n\nModel structure\n---------------\n\n";
            
$output .= "The following JSON document defines how the model was parsed from an HTTP response into the "
                
"associative array structure you see above.\n\n";
            
$output .= '  ' json_encode($this->structure->toArray()) . "\n\n";
        }

        return 
$output "\n";
    }
}

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