PHP Kuvvet Download dosyası bozuk

0 Cevap php

Ben bir dosya indirmek için bu PHP komut dosyası kullanıyorum:

$status=stripos($_SERVER['HTTP_REFERER'],'servername');
if($status===false)
{
    header('Location:http://xyz.com);
}
else
{
    header('Content-disposition: attachment; filename=XXX.pdf');
    header('Content-type: application/pdf');
    readfile('http://www.xyz.com/Downloads/XXX.pdf);
}

Ben herhangi bir tarayıcıda dosyayı indirmek Ancak o bozuk olduğunu söylüyor.

Lütfen Yardım!

0 Cevap