PHP code example of ivrok / urlmanager

1. Go to this page and download the library: Download ivrok/urlmanager library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ivrok / urlmanager example snippets


use Ivrok\URLManager\URL;

$url = new URL('example.com');
$url->setHTTPS();
$url->setPath('/index.php');
$url->addQueryParameter('key', 'value');

echo $url; // Outputs: https://example.com/index.php?key=value

use Ivrok\URLManager\URLHelper;

$url = URLHelper::parseUrl('https://www.example.com/index.php?key=value');

// Check if a specific query exists
echo URLHelper::hasQuery($url, 'key'); // Outputs: true

// Check if the URL path matches a specific path
echo URLHelper::isPath($url, '/about'); // Outputs: true

// Check if the URL path