PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP基础 >> 基础文章 >> 

PHP5盗链函数(referfile)

PHP5盗链函数(referfile)

来源:互联网  作者:axgle  发布时间:2007-12-31
以下为引用的内容: PHP5盗链函数(referfile) 作者:a

以下为引用的内容:

PHP5盗链函数(referfile)
作者:axgle

功能:任何以‘HTTP_REFERER’为主要特征的防盗链技术将通通失效,顷刻间便灰飞烟灭。

<?php
/**
@title:PHP5盗链函数
@author:axgle
@filename:referer.php
@contents:This is a demo that show referer made success
*/

if($_GET['id']) {
        echo $_SERVER['HTTP_REFERER'];
} else {
        echo referfile('http://localhost/referer.php?id=1','http://axgle.is.good/');
       
}

function referfile($url,$refer='') {
        $opt=array('http'=>array('header'=>"Referer:$refer"));
        $context=stream_context_create($opt);
        return file_get_contents($url,false,$context);
}

?>

Tags: 函数   url   php   php5   盗链  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号