php-extended / php-url-redirecter-securitylinks-com
This package is abandoned and no longer maintained.
The author suggests using the php-extended/php-url-redirecter-object package instead.
Library to retrieve hidden links from securitylinks.com website
3.1.18
2021-06-24 22:26 UTC
Requires
Requires (Dev)
README
Library to retrieve hidden links from security-links.com website
Installation
The installation of this library is made via composer.
Download composer.phar
from their website.
Then add to your composer.json :
"require": {
...
"php-extended/php-url-redirecter-securitylinks-com": "^3"
...
}
Then run php composer.phar update
to install this library.
The autoloading of all classes of this library is made through composer's autoloader.
Basic Usage
You may use this library the following way:
use PhpExtended\UrlRedirecter\SecuritylinksComRedirecter;
$url = '<put your security-links.com url here>';
$redirecter = new SecuritylinksComRedirecter();
$res = $redirecter->getRedirections($url);
// $res is now an array with one result: the redirection url
License
MIT (See license file).