ZodiacXP
Erfahrenes Mitglied
Ich habe eine vordefinierte URL
Und dazu weitere Angaben:
Das letzte Array soll, unter Beachtung aller Varianten, umgeformt werden. Für das Beispiel:
Also alle relativen Angaben in absolute umgewandelt werden.
Quasi so etwas wie realpath() für andere URLs.
Wer weis was?
PHP:
$s = "http://www.foo.bar/path/file.ext";
// oder http://www.foo.bar/path
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?