Feb 05

转自:http://www.ewao.cn/b/php-code-thieves.html

在咦哇噢博客上看到的,觉得很有用,就复制下来了,代码如下:






< ?php
$url=”$_GET[url]“;
$fp=@fopen($url,”r”) or die(“time out!”);
$fcontents = file_get_contents($url);
eregi(“var pp_url=”(.*)var pp_link”, $fcontents, $regs);
$regs[1]=str_replace(“”;”,”",$regs[1]);
echo urldecode($regs[1]);
?>

使用注意:urldecode.php?url=http://目标地址/。

Leave a Reply