1

我们正在开发网站。我们有按钮。在按钮操作中,我们放置了 PDF 文件下载。工作正常。但我们需要如何计算从我的网站下载我的 PDF 文件。

我们尝试过这样,但我们没有得到。

<?php
//$Down=$_GET['Down'];
$a="hello";
$i=0;
?>
<script type="text/javascript">
    var i=0;
    function submitForm()
    {
        <?php
        $i = @file_get_contents('count.txt'); // read the hit count from file
        echo $i; //  display the hit count
        $i++; // increment the hit count by 1
        @file_put_contents('count.txt', $i); // store the new hit count
        ?>  
    }
</script>
<html>
<head>
</head>

<body>
    <input type="button" onclick="submitForm()" value="submit 1" />
</body>
</html>

我们什么都没有。我们是新手,PHP请指导我们。

4

2 回答 2

4

好吧,您可以下载 PDF 并在表单提交时计算:

<?php
$i=0;
$i = (int) @file_get_contents('count.txt'); // read the hit count from file
if(!empty($_POST)) {
    $i++; // increment the hit count by 1
    @file_put_contents('count.txt', $i); // store the new hit count
    // Download
    $file = 'filename.pdf';
    header('Content-Description: File Transfer');
    header('Content-Type: application/pdf');
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
}

现在使用echo $i;要显示下载次数的位置。

在 html 中,表单应该是:

<form method="post" action="">
    <input type="submit" name="download" value="Download">
</form>
于 2015-04-22T14:56:14.717 回答
1

您将 PHP 与 Javascript 混合使用,这根本行不通。最好的解决方案是创建一个 PHP 脚本,如上所示进行计数,然后将 PDF 作为附件提供。

一些例子:

如何在 HTML 链接中制作 PDF 文件可下载

文件下载的正确 PDF 标题

于 2015-04-22T14:52:11.747 回答