Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6975529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:22:48+00:00 2026-05-27T17:22:48+00:00

I found this solution to normalise and match equal URLs but I want to

  • 0

I found this solution to normalise and match equal URLs but I want to know if there is anything more elegant, doesn’t PHP have a URL normalising function?

function urlMatch($url1, $url2)
{
    // parse the urls
    $r1 = parse_url($url1);
    $r2 = parse_url($url2);

    // get the variables out of the queries
    parse_str($r1['query'], $v1);
    parse_str($r2['query'], $v2);

    // match the domains and paths
    if ($r1['host'] != $r2['host'] || $r1['path'] != $r2['path'])
        return false;

    // match the arrays
    foreach ($v1 as $key => $value)
        if (array_key_exists($key, $v2) && $value != $v2[$key])
            return false;

    // if we haven't returned already, then the queries match
    return true;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T17:22:49+00:00Added an answer on May 27, 2026 at 5:22 pm

    Something like this may be more suitable for your needs:

    function urlMatch($url1, $url2){
      // parse the urls
      $r1 = parse_url($url1);
      $r2 = parse_url($url2);
    
      if (isset($r1['query'])){
        // get the variables out of the query
        parse_str($r1['query'], $v1);
        // sort arguments so they be in exactly same order
        asort($v1);
        // place sorted arguments back
        $r1['query'] = http_build_query($v1);
      }
    
      if (isset($r2['query'])){
        parse_str($r2['query'], $v2);
        asort($v2);
        $r2['query'] = http_build_query($v2);
      }
    
      // Match re-constructed urls (you'll need pecl_http extension for this)
      $matched = http_build_url($r1) === http_build_url($r2);
    
      return $matched;
    }
    

    Update: I’ve changed code a bit to deal with empty queries…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I found this solution which works, but I find it hard to believe there
I found the solution for this question in C# , but I can't translate
I've been looking around for a solution to this thing but I haven't found
Edited: SOLUTION FOUND. This is strange and not the best solution, but I just
I have found this solution on Sof link but i had to change it
I've found this solution but it seems to be for Java SE. I can't
Is there any way to simulate text-overflow: ellipsis using CSS2? I found this solution
I want to install apk silently in android phone, I have found this solution
I found this solution: find -type d -name .svn|xargs rm -rf but I am
I searched for an implementation of std::map runtime ordering and have found this solution:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.