php-extended / php-url-redirecter-generic
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 generic website
3.1.17
2021-06-25 16:53 UTC
Requires
Requires (Dev)
- dev-master
- 3.1.17
- 3.1.16
- 3.1.15
- 3.1.14
- 3.1.13
- 3.1.12
- 3.1.11
- 3.1.10
- 3.1.9
- 3.1.8
- 3.1.7
- 3.1.6
- 3.1.5
- 3.1.4
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.0.2
- 2.0.1
- 2.0.0
- 1.1.0
- 1.0.30
- 1.0.29
- 1.0.28
- 1.0.27
- 1.0.26
- 1.0.25
- 1.0.24
- 1.0.23
- 1.0.22
- 1.0.21
- 1.0.20
- 1.0.19
- 1.0.18
- 1.0.17
- 1.0.16
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2021-06-27 16:09:21 UTC
README
Library to retrieve hidden links from any simple redirecter 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-generic": "^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.
Supported domains
https requests
- app.link (branch.io)
- bit.do
- bit.ly
- buff.ly
- clk.im
- geni.us
- goo.gl
- is.gd
- ity.im
- lmgtfy.com
- ovh.to
- po.st
- psbe.co
- rebrand.ly (rebrandly.click, rebrandly.xyz)
- short.cm
- smarturl.it
- snip.ly
- snipli.com
- t.co
- tiny.cc
- tinyurl.com
- tr.im
- urlsgalore.com
- v.gd
- youtu.be
http requests
- 9nl.at (clickmeter.com)
- beam.to
- bfy.tw
- clkme.in
- cutt.us
- cur.lv
- easyurl.net
- georiot.co
- goshrink.com
- hyperurl.co
- mcaf.ee
- ow.ly
- redirects.ca
- shorl.com
- slink.co
- snip.li
- tiny.pl
- u.to
- utm.io
Basic Usage
You may use this library the following way:
use PhpExtended\UrlRedirecter\GenericRedirecter;
$url = '<put your generic url here>';
$redirecter = new GenericRedirecter();
$res = $redirecter->getRedirections($url);
// $res is now an array with one result: the redirection url
License
MIT (See license file).