您好,登錄后才能下訂單哦!
小編給大家分享一下php禁止視頻url下載的方法,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
php禁止視頻url下載的方法:首先設(shè)置好“detail.html”模板內(nèi)容;然后做一個(gè)token用于失效方案;接著在php文件中通過vid獲取數(shù)據(jù)庫存放的真實(shí)資源地址;最后刪除token,保證視頻每次只能播放一次即可。
php防止視頻資源被下載
假如資源地址 : http://xxx.com/videoData/xxx.mp4 即可實(shí)現(xiàn)播放;
detail.html模板內(nèi)容
<video controls="controls" autoplay="autoplay"> <source type="video/ogg" src="xxx.com/goVideo.php?video=1" /><!--這樣的地址他們就醉了吧,真實(shí)地主保護(hù)住了 而且每次進(jìn)入詳情頁播放完了,重新進(jìn)入detail鏈接方法中,才能播放 --> Your browser does not support the video tag. </video>
detail.php控制層內(nèi)容
// 先進(jìn)入詳情頁 publicfunction detail(){ $_SESSION['token'] = md5("xxx"); //做一個(gè)token 用于失效方案 //進(jìn)入到詳情頁 }
goVideo.php代碼如下
/** +---------------------------------------------------------- * 生成html video 播放地址 +---------------------------------------------------------- * @access public +---------------------------------------------------------- */ public function goVideo() { $vid = (int)$_GET['videoId']; //數(shù)據(jù)庫存放的資源id $data = $this->getInfo($vid); //通過vid 獲取 數(shù)據(jù)庫存放的真實(shí)資源地址 if($_SESSION["token"]){ unset($_SESSION["token"]); //刪除token,保證每次只能播放一次 //頁面直接輸出視頻 $filePath=$data['URL']; ini_set('memory_limit', '512M'); header("Pragma: public"); header("Expires: 0"); header("Content-Type: application/octet-stream"); //文件mime類型 //header("Content-Disposition: attachment; filename=video11.mp4;" ); //文件名$filename //header("Content-Length: 83995"); //文件大小$fsize ob_clean(); flush(); //ob_end_clean(); @readfile($filePath); } }
以上是php禁止視頻url下載的方法的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。