X7ROOT File Manager
Current Path:
/home/katmhsmi/public_html/wp-content/plugins/redirection/models/url
home
/
katmhsmi
/
public_html
/
wp-content
/
plugins
/
redirection
/
models
/
url
/
📁
..
📄
url-encode.php
(2.25 KB)
📄
url-flags.php
(4.85 KB)
📄
url-match.php
(1.36 KB)
📄
url-path.php
(2.86 KB)
📄
url-query.php
(11.25 KB)
📄
url-request.php
(1.99 KB)
📄
url-transform.php
(2.28 KB)
📄
url.php
(1.27 KB)
Editing: url-match.php
<?php /** * Get a URL suitable for matching in the database */ class Red_Url_Match { /** * URL * * @var String */ private $url; /** * Constructor * * @param string $url The URL to match. */ public function __construct( $url ) { $this->url = $url; } /** * Get the plain 'matched' URL: * * - Lowercase * - No trailing slashes * * @return string URL */ public function get_url() { // Remove query params, and decode any encoded characters $url = new Red_Url_Path( $this->url ); $path = $url->get_without_trailing_slash(); // URL encode $decode = [ '/', ':', '[', ']', '@', '~', ',', '(', ')', ';', ]; // URL encode everything - this converts any i10n to the proper encoding $path = rawurlencode( $path ); // We also converted things we dont want encoding, such as a /. Change these back foreach ( $decode as $char ) { $path = str_replace( rawurlencode( $char ), $char, $path ); } // Lowercase everything $path = Red_Url_Path::to_lower( $path ); return $path ? $path : '/'; } /** * Get the URL with parameters re-ordered into alphabetical order * * @return string */ public function get_url_with_params() { $query = new Red_Url_Query( $this->url, new Red_Source_Flags( [ Red_Source_Flags::FLAG_CASE => true ] ) ); return $query->get_url_with_query( $this->get_url() ); } }
Upload File
Create Folder