짧은주소 최종경로 알아내기
https://bitly.co.kr/
정말 좋은 사이트이군요.
짧은주소 URL을 클릭하기전에 최종목적지 URL이 어디인지 알아내줍니다.
댓글 3개
Radar
6년 전
[code]
<?php
//https://bit.ly/2TTEdPx
//http://bitly.kr/Google179293
function CheckLink($Link){
$Curl = curl_init();
curl_setopt($Curl, CURLOPT_URL, $Link);
curl_setopt($Curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($Curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($Curl, CURLOPT_HEADER, true);
curl_setopt($Curl, CURLOPT_NOBODY, true);
curl_setopt($Curl, CURLOPT_RETURNTRANSFER, true);
$Result = curl_exec($Curl);
if(preg_match("/Location/", $Result)){
$Slice = explode("Location:", $Result);
$Slice = explode("\n", $Slice[1]);
$Slice[0] = preg_replace("/\s+/", "", $Slice[0]);
if($Slice[0]){
return CheckLink($Slice[0]);
}
}else{
return $Link;
}
}
echo CheckLink("https://bit.ly/2TTEdPx");
?>
[/code]
<?php
//https://bit.ly/2TTEdPx
//http://bitly.kr/Google179293
function CheckLink($Link){
$Curl = curl_init();
curl_setopt($Curl, CURLOPT_URL, $Link);
curl_setopt($Curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($Curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($Curl, CURLOPT_HEADER, true);
curl_setopt($Curl, CURLOPT_NOBODY, true);
curl_setopt($Curl, CURLOPT_RETURNTRANSFER, true);
$Result = curl_exec($Curl);
if(preg_match("/Location/", $Result)){
$Slice = explode("Location:", $Result);
$Slice = explode("\n", $Slice[1]);
$Slice[0] = preg_replace("/\s+/", "", $Slice[0]);
if($Slice[0]){
return CheckLink($Slice[0]);
}
}else{
return $Link;
}
}
echo CheckLink("https://bit.ly/2TTEdPx");
?>
[/code]
게시판 목록
자유게시판
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 |
|
2주 전 | 46 | |
| 199628 | 2개월 전 | 223 | ||
| 199627 |
|
2개월 전 | 288 | |
| 199626 | 2개월 전 | 262 | ||
| 199625 | 2개월 전 | 157 | ||
| 199624 |
|
2개월 전 | 213 | |
| 199623 | 2개월 전 | 278 | ||
| 199622 | 2개월 전 | 229 | ||
| 199621 | 2개월 전 | 194 | ||
| 199620 | 2개월 전 | 151 | ||
| 199619 | 2개월 전 | 191 | ||
| 199618 | 2개월 전 | 126 | ||
| 199617 |
비버팩토리
|
2개월 전 | 247 | |
| 199616 | 2개월 전 | 139 | ||
| 199615 | 2개월 전 | 184 | ||
| 199614 | 2개월 전 | 229 | ||
| 199613 | 2개월 전 | 228 | ||
| 199612 | 2개월 전 | 183 | ||
| 199611 | 2개월 전 | 130 | ||
| 199610 | 2개월 전 | 92 | ||
| 199609 | 2개월 전 | 158 | ||
| 199608 |
techstar
|
2개월 전 | 144 | |
| 199607 | 2개월 전 | 220 | ||
| 199606 | 2개월 전 | 173 | ||
| 199605 | 2개월 전 | 240 | ||
| 199604 |
|
2개월 전 | 295 | |
| 199603 | 2개월 전 | 190 | ||
| 199602 | 2개월 전 | 180 | ||
| 199601 |
|
2개월 전 | 217 | |
| 199600 | 2개월 전 | 153 | ||
| 199599 | 2개월 전 | 222 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기