Relativer Pfad als absoluten Pfad für andere URLs

ZodiacXP

Erfahrenes Mitglied
Ich habe eine vordefinierte URL
PHP:
$s = "http://www.foo.bar/path/file.ext";
// oder http://www.foo.bar/path
Und dazu weitere Angaben:
PHP:
$a[0] = "/folder/th.ing";
$a[1] = "this/that.foo";
$a[2] = "http://some.where/else";

Das letzte Array soll, unter Beachtung aller Varianten, umgeformt werden. Für das Beispiel:
PHP:
$a[0] = "http://www.foo.bar/folder/th.ing";
$a[1] = "http://www.foo.bar/path/this/that.foo";
$a[2] = "http://some.where/else";

Also alle relativen Angaben in absolute umgewandelt werden.
Quasi so etwas wie realpath() für andere URLs.

Wer weis was?
 
Zurück