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


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

namespace Guzzle\Parser\Url;

use 
Guzzle\Common\Version;

/**
 * Parses URLs into parts using PHP's built-in parse_url() function
 * @deprecated Just use parse_url. UTF-8 characters should be percent encoded anyways.
 * @codeCoverageIgnore
 */
class UrlParser implements UrlParserInterface
{
    
/** @var bool Whether or not to work with UTF-8 strings */
    
protected $utf8 false;

    
/**
     * Set whether or not to attempt to handle UTF-8 strings (still WIP)
     *
     * @param bool $utf8 Set to TRUE to handle UTF string
     */
    
public function setUtf8Support($utf8)
    {
        
$this->utf8 $utf8;
    }

    public function 
parseUrl($url)
    {
        
Version::warn(__CLASS__ ' is deprecated. Just use parse_url()');

        static 
$defaults = array('scheme' => null'host' => null'path' => null'port' => null'query' => null,
            
'user' => null'pass' => null'fragment' => null);

        
$parts parse_url($url);

        
// Need to handle query parsing specially for UTF-8 requirements
        
if ($this->utf8 && isset($parts['query'])) {
            
$queryPos strpos($url'?');
            if (isset(
$parts['fragment'])) {
                
$parts['query'] = substr($url$queryPos 1strpos($url'#') - $queryPos 1);
            } else {
                
$parts['query'] = substr($url$queryPos 1);
            }
        }

        return 
$parts $defaults;
    }
}

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