我正在制作“CDN”视频传送脚本。我的问题不是所有提供者都包括在内,因此我需要检查客户端是否可以访问该链接,如果没有再发送给他。 我尝试过使用get_headers,但只有服务器检查它是否可以访问链接,而不是用户。
$header = get_headers($VIDEO);
preg_match('/\d{3}/', $header[0], $code);
if($code[0] < 400){
header("Content-type: video/x-flv");
header("Location:" . $VIDEO . $dop);
}else{
header("Content-type: video/x-flv");
header("X-Accel-Redirect: /".$_GET["filename"].$dop);
}
答案 0 :(得分:0)
尝试这样的事情:
$ip_address = array('50.101.20.212', '25.65.659.25');
if(in_array($_SERVER['REMOTE_ADDR'], $ip_address )){
// may access site;
}else{
// access denied
}
<强>更新强>
您可以采用相反的方式来确定用户是否可以输入链接,
$ip_address = array('50.101.20.212', '25.65.659.25');
if(!in_array($_SERVER['REMOTE_ADDR'], $ip_address )){
//access denied
}