$timestamp = time();
function open($file,$type=''){
global $fromurl,$referer;
$cachename=$file;
if($type){
$file='/'.$type.'/'.$file;
}else{
$file=$file;
}
if($open=file($file)){
$count=count($open);
for($i=0;$i
$theget.=$open[$i];
}
}else{
die('无法连接源站网络,请刷新');
}
return $theget;
}
function cut($file,$from,$end){
$message=explode($from,$file);
$message=explode($end,$message[1]);
return $message[0];
}
function curl($openurl)
{
global $isfun;
if($isfun=="curl"){
$ch = curl_init($openurl);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$file = curl_exec($ch);
curl_close($ch);
}
elseif($isfun=="fopen"){
$file=open($openurl);
}
else{ echo "<script>alert('你的空间不支持本程序,谢谢使用');window.close();</script>";}
return $file;
}
|