我目前正在尝试学习教程,并且已经到达使用 if 语句的部分,该语句将向我显示我存储在文件夹中的所有可能的可下载数据。
但是我遇到的问题是 if 语句,它一直告诉我Undefined variable: i
在这个 if 语句中有一个 ..
<p>Welcome <?php print $this->Session->read('Auth.User.name');
echo ' ';
echo $this->Html->link('Logout', array('controller' => 'Users', 'action' => 'logout'));?> </p>
<dt> <?php if ($i % 2 == 0) echo $class; ?> <?php __('Download'); ?></dt>
<dd> <?php if ($i++ % 2 == 0) echo $class; ?>
<?php echo $this->Html->link(__('Download', true), array('action' => 'download', $upload['Upload']['uploadID'])); ?>
</dd>
这是控制器中的下载功能:
function download($id = null) {
if (!$id) {
$this->Session->setFlash(__('Invalid id for upload', true));
$this->redirect(array('action' => 'view'));
}
$this->Upload->bindModel(array('hasOne' => array('UploadsUser')));
$upload = $this->Upload->find('first', array(
'conditions' => array(
'Upload.uploadID' => $id,
'OR' => array(),
)
));
if (!$upload)
{
$this->Session->setFlash(__('Invalid id for upload', true));
$this->redirect(array('action' => 'view'));
}
$this->view = 'media';
$filename = $upload['Upload']['fileName'];
$this->set(array(
'id' => $upload['Upload']['uploadID'],
'name' => substr($filename, 0, strrpos($filename, '.')),
'extension' => substr(strrchr($filename, '.'), 1),
'path' => APP . 'uploads' . DS,
'download' => true,
));
}
我也知道在 if 语句中应该是 =、== 或 ===,但出于某种原因,在本教程中他使用了 % ? 如果您还可以解释为什么使用它,我将不胜感激。
谢谢