This is a very simple PHP script to convert relative URL to its absolute path, given a base URL. e.g: converting lena.jpg to http://www.example.com/a/b/lena.jpg.
When I searched Google for scripts to convert relative to absolute URL, I came accross a site that has done that, only in Perl. It is a very simple script compared to the others, so I tried to port the code into PHP.
Note what the Perl geek said about this:
"I wrote this mainly because someone asked how to do this in PHP. Turns out there is nothing in like the venerable URI module in all of PHP-dom (how pathetic is that for a language as web-centric as it?)"
Btw, here's the script:
Listing 1: rel2abs.php
The results is shown in the table below, given base URL is http://www.example.com/a/b/c
Table 1. Conversion Results
| Relative URL | Absolute URL |
|---|---|
lena.jpg | http://www.example.com/a/b/lena.jpg |
./lena.jpg | http://www.example.com/a/b/lena.jpg |
../lena.jpg | http://www.example.com/a/lena.jpg |
../../lena.jpg | http://www.example.com/lena.jpg |
/lena.jpg | http://www.example.com/lena.jpg |
../x/lena.jpg | http://www.example.com/a/x/lena.jpg |
../../x/y/lena.jpg | http://www.example.com/x/y/lena.jpg |
http://google.com | http://google.com |
../../x/y/lena.jpg | http://www.example.com/x/y/lena.jpg |
?w=90&h=60&f=lena.jpg | http://www.example.com/a/b/c?w=90&h=60&f=lena.jpg |
#lena | http://www.example.com/a/b/c#lena |
Regular Expressions Cookbook
By: Jan Goyvaerts, Steven Levithan
This cookbook provides more than 100 recipes to help you crunch data and manipulate text with regular expressions. it offers step-by-step instructions for common tasks with Java, Perl, PHP, and many more.
Salman on Jun 29, 2009:
$base instead of hard-coding it. Something that goes along these lines:$base = 'http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']); Nash on Jun 29, 2009:
http://example.com/nature/photos.html. If the links are in relative URLs:<a href="img/beach.jpg">The Beach</a>
<a href="img/lake.jpg">The Lake</a>
<a href="img/river.jpg">The River</a>http://example.com/nature/img/beach.jpg
http://example.com/nature/img/lake.jpg
http://example.com/nature/img/river.jpg Alex Vincent on Nov 11, 2009:
Nash on Jan 29, 2010:
Ben on Jan 31, 2010:
chesser on Feb 8, 2010:
Asri on May 5, 2010:
| Tel. | +62 31 8662872 +62 856 338 6017 |
| ICQ | 489571630 |
| Skype | dede_bl4ckheart |
| Yahoo | dede_bl4ckheart |
| nashruddin.amin |
dr.emi on Jun 27, 2009:
Remember me ?
Nice tutorial friend !