oldmine / relative-to-absolute-url
There is no license information available for the latest version (dev-master) of this package.
Library adaptation to translate relative url to absolute. Original library: https://sourceforge.net/projects/absoluteurl/
dev-master
2019-06-26 09:46 UTC
Requires (Dev)
- phpunit/phpunit: ^7
This package is auto-updated.
Last update: 2024-10-24 09:02:57 UTC
README
This script converts the relative url to absolute url, provided a base url.
For more, look here: http://publicmind.in/blog/urltoabsolute
Usage:
First step - add library to project
Composer (.json)
{
"require": {
"oldmine/relative-to-absolute-url": "master"
}
}
Composer (Command Line)
composer require oldmine/relative-to-absolute-url
Require:
require_once('src/RelativeToAbsoluteUrl.php');
Second step - call static method urlToAbsolute() in class RelativeToAbsoluteUrl
$absoluteUrl = RelativeToAbsoluteUrl::urlToAbsolute('http://test.com/dir1/dir2/', 'test')
Author/credits
- Original author: David R. Nadeau, NadeauSoftware.com
- Edited and maintained by: Nitin Kr, Gupta, publicmind.in
- Edited and maintained by: Daniil Zhelninskiy webmailexec@gmail.com