如何在PHP中获取Airbnb短链接网址的最终目标网址? (例如https://abnb.me/Vt3MA7vVyM)
使用this tool我可以看到链接被重定向三次
答案 0 :(得分:4)
file_get_contents()
遵循HTTP响应中定义的重定向。但是,使用window.top.location
在JavaScript中有一个重定向。因此,您可以使用strpos()
和简单preg_match()
:
$url = 'https://abnb.me/Vt3MA7vVyM';
$ret = file_get_contents($url);
$pos = strpos($ret, 'window.top.location');
if ($pos !== false) {
$str = substr($ret, $pos);
$str = preg_match('~validate\("([^"]*)~', $str, $matches);
echo html_entity_decode($matches[1]);
}
输出:
https://airbnb.com/rooms/2110908?=&s=41&ref_device_id=43fb193006d0cb8848f689aec67ba15ae5c48471&user_id=10758532&_branch_match_id=519823851281523702