• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Admin

Well-Known Member
Staff member
Administrator
Tạo 1 tập tin bất kỳ, ví dụ tuoitreit_doiten.php dán code này vào
PHP:
<?php
$file=$_GET['url'];
$name=basename($file);
if (copy($file,$name)==TRUE)
{
$size=filesize($name);
$fp=fopen($name,'rb');
header("Content-type: application/octet-stream");
header("Content-length: $size");
header('Content-disposition: attachment; filename="'.str_replace(array('.jar','%20',' '), array('_jar','-','-'), $name).'"');
fpassthru($fp);
fclose($fp);
unlink($name);
} else {
echo 'Bạn không thể đổi tên tập tin này sang _jar, có thể nó đã bị lỗi';
}
?>
Lưu lại là xong
Chúc các bạn thành công!
Bài viết chỉ đăng duy nhất tại tuoitreit.vn, mọi sự sao chép phải ghi rõ nguồn và liên kết đến bài viết gốc
 

Facebook Comments

New posts New threads New resources

Back
Top