Convert URI to URL

How to convert a URI to a URL if I know the current path to the site?

Consider the following examples:

Current path: http://www.site.com/aa/folder/page1.php

Uri: folder2 / page.php

Uri: /folder2/page.php


And what if the current path:

`http://www.site.com/aa/folder/

or

`http://www.site.com/aa/folder

What will the urls look like?

I know this should be easy and clear, but I can’t find the full answer (and yes, I searched on Google)

+3
source share
5 answers

Here is a block of code that has the function you need: http://ca.php.net/manual/en/function.parse-url.php#76682

Edit: the above related function is changed with an example

<?php

var_dump(resolve_url('http://www.site.com/aa/folder/page1.php','folder2/page.php?x=y&z=a'));

var_dump(resolve_url('http://www.site.com/aa/folder/page1.php','/folder2/page2.php'));

function unparse_url($components) {
    return $components['scheme'].'://'.$components['host'].$components['path'];
}

/**
 * Resolve a URL relative to a base path. This happens to work with POSIX
 * filenames as well. This is based on RFC 2396 section 5.2.
 */
function resolve_url($base, $url) {
        if (!strlen($base)) return $url;
        // Step 2
        if (!strlen($url)) return $base;
        // Step 3
        if (preg_match('!^[a-z]+:!i', $url)) return $url;
        $base = parse_url($base);
        if ($url{0} == "#") {
                // Step 2 (fragment)
                $base['fragment'] = substr($url, 1);
                return unparse_url($base);
        }
        unset($base['fragment']);
        unset($base['query']);
        if (substr($url, 0, 2) == "//") {
                // Step 4
                return unparse_url(array(
                        'scheme'=>$base['scheme'],
                        'path'=>$url,
                ));
        } else if ($url{0} == "/") {
                // Step 5
                $base['path'] = $url;
        } else {
                // Step 6
                $path = explode('/', $base['path']);
                $url_path = explode('/', $url);
                // Step 6a: drop file from base
                array_pop($path);
                // Step 6b, 6c, 6e: append url while removing "." and ".." from
                // the directory portion
                $end = array_pop($url_path);
                foreach ($url_path as $segment) {
                        if ($segment == '.') {
                                // skip
                        } else if ($segment == '..' && $path && $path[sizeof($path)-1] != '..') {
                                array_pop($path);
                        } else {
                                $path[] = $segment;
                        }
                }
                // Step 6d, 6f: remove "." and ".." from file portion
                if ($end == '.') {
                        $path[] = '';
                } else if ($end == '..' && $path && $path[sizeof($path)-1] != '..') {
                        $path[sizeof($path)-1] = '';
                } else {
                        $path[] = $end;
                }
                // Step 6h
                $base['path'] = join('/', $path);

        }
        // Step 7
        return unparse_url($base);
}

?>
+2
source

$_SERVER , , $_SERVER['REQUEST_URI'] $_SERVER['SERVER_NAME']. $_SERVER['QUERY_STRING'] .

, :

http://php.net/manual/en/reserved.variables.server.php

+2

php has pathinfo(), realpath()and parseurl()other file system functions and URLs. Used with information from $_SERVERsuperglobal (as mentioned by andre), you should be able to do what you need.

0
source
$uri = "http://www.site.com/aa/folder/";

$url = explode("/", $uri);
$url = $url[2];

echo $url; //www.site.com

Is this what you are looking for?

0
source

If you install PECL pecl_http, you can use http_build_url:

http_build_url("http://www.site.com/aa/folder/page1.php",
                 array("path" => "folder2/page.php"));

and you pass any of your relative URI (L) s as path. The function is sure to build the correct one.

0
source

Source: https://habr.com/ru/post/1782000/


All Articles