如何添加下载按钮? [英] How can I add a download button?

查看:193
本文介绍了如何添加下载按钮?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码可输出QR码:

I have this code which outputs a QR code:

<?php
include(JPATH_LIBRARIES . '/phpqrcode/qrlib.php');

$db = JFactory::getDbo(); 
$user = JFactory::getUser();

$query = $db->getQuery(true); 
$query->select($db->quoteName(array('Soci', 'Nom', 'Cognoms', 'eCorreu')))
->from($db->quoteName('#__rsform_socis'))
->where($db->quoteName('username') . ' = '. $db->quote($user->username)); 
$db->setQuery($query);
$codeContents = $db->loadObjectList();

$data .= "Soci Nº: {$codeContents[0]->Soci}\n ";
$data .= "Nom: {$codeContents[0]->Nom} ";
$data .= "{$codeContents[0]->Cognoms}\n";
$data .= "e-correu: {$codeContents[0]->eCorreu}";

$tempDir = JPATH_SITE . '/images/'; 
$fileName = 'qr_'.md5($data).'.png'; 
$pngAbsoluteFilePath = $tempDir.$fileName;
$urlRelativeFilePath = JUri::root() .'images/' . $fileName;

if (!file_exists($pngAbsoluteFilePath)) {
QRcode::png($data, $pngAbsoluteFilePath);
} 
echo '<img src="'.$urlRelativeFilePath.'" />';
?>

如何添加下载按钮,以便用户可以将代码下载到计算机上?
谢谢,

How can I add a download button so the user can download the code to the computer? Thanks,

丹妮

推荐答案

更多一个HTML问题,让我们开始吧:有一个名为下载的属性,您可以像这样使用它:

This is more of a HTML question, so lets get started: There is an attribute called "download" and you can use it like this:

echo '<a href="'.$urlRelativeFilePath.'" download="qrcode.png">Download QR</a>';

它将下载文件作为您在此处提供的名称。因此,如果服务器上的图像URL为:wadAHEybwdYRfaedBFD22324Dsefmsf.png,则它将文件下载为 qrcode.png。不幸的是,并非所有浏览器都支持此功能。另一个简单的解决方法是制作一个将文件名作为操作的表单,如下所示:

It downloads the file as the name you supply here. So if the image url on your server is: wadAHEybwdYRfaedBFD22324Dsefmsf.png it would download the file as "qrcode.png". Unfortunately this is not supported in all browsers. Another easy fix is to make a form that has your filename as an action like so:

echo '<form method="get" action="'.$urlRelativeFilePath.'"><button type="submit">Download QR Code!</button></form>';

另一种方法(少量代码)是使用带有某些特定标头的PHP: / p>

Another way (little more code) to do this is using PHP with some specific headers like this:

<?php

// place this code inside a php file and call it f.e. "download.php"
$path = $_SERVER['DOCUMENT_ROOT']."/path2file/"; // change the path to fit your websites document structure
$fullPath = $path.$_GET['download_file'];

if ($fd = fopen ($fullPath, "r")) {
    $fsize = filesize($fullPath);
    $path_parts = pathinfo($fullPath);
    $ext = strtolower($path_parts["extension"]);
    switch ($ext) {
        case "pdf":
        header("Content-type: application/pdf"); // add here more headers for diff. extensions
        header("Content-Disposition: attachment; filename=\"".$path_parts["basename"]."\""); // use 'attachment' to force a download
        break;
        default;
        header("Content-type: application/octet-stream");
        header("Content-Disposition: filename=\"".$path_parts["basename"]."\"");
    }
    header("Content-length: $fsize");
    header("Cache-control: private"); //use this to open files directly
    while(!feof($fd)) {
        $buffer = fread($fd, 2048);
        echo $buffer;
    }
}
fclose ($fd);
exit;
// example: place this kind of link into the document where the file download is offered:
// <a href="download.php?download_file=some_file.pdf">Download here</a>
?>

它适用于大小文件,也适用于许多不同的文件类型。在此处找到信息: http://www.finalwebsites.com/forums/topic/php -文件下载

It works for large and small files and also for many different filetypes. Info found here: http://www.finalwebsites.com/forums/topic/php-file-download

这篇关于如何添加下载按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆