【发布时间】:2012-01-16 09:20:38
【问题描述】:
此代码用于提取文件目录和标题。用户单击文件链接时下载。我需要计算下载次数。用 cakephp 或 php 怎么做?
downloads_controller.php:
function index() {
$this->set('downloads', $this->paginate());
}
下载/index.ctp:
<?php
$title = $download['Download']['title'];
// output filetitle
$filename = '/files/'.$download['Download']['filename'];
// output http://localhost/tet/files/un5titled0.rar
echo $this->Html->link($title, $filename,array('escape' => false));
?>
【问题讨论】:
标签: php cakephp cakephp-1.3