本文整理汇总了PHP中Versions::findFirst方法的典型用法代码示例。如果您正苦于以下问题:PHP Versions::findFirst方法的具体用法?PHP Versions::findFirst怎么用?PHP Versions::findFirst使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Versions
的用法示例。
在下文中一共展示了Versions::findFirst方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
?>
</h3>
<p class="pull-right">Date : <?php
echo $version->date;
?>
<?php
echo $this->tag->linkTo(array('versions/edit/' . $version->id . '/' . $version->system_id, '<span class="glyphicon glyphicon-pencil"></span>'));
?>
<?php
echo $this->tag->linkTo(array('versions/delete/' . $version->id . '/' . $version->system_id, '<span class="glyphicon glyphicon-trash"></span>'));
?>
</span></p>
<?php
$last_version = Versions::findFirst(array("date < '{$version->date}'", "order" => "date DESC", "limit" => 1));
if ($last_version) {
$last_date = $last_version->date;
} else {
$last_date = '0000-00-00';
}
$date = $version->date;
$activities = Activities::query()->where('date <= :date:')->andWhere('system_id = :system_id: ')->andWhere('date > :last_date: ')->bind(array('date' => $version->date, 'system_id' => $version->system_id, 'last_date' => $last_date))->order('date')->execute();
?>
<table class="table table-bordered">
<thead>
<tr>
<th>No</th>
<th>Date</th>
<th>Time</th>
<th>Description</th>
开发者ID:mahrizal,项目名称:system-management-system,代码行数:31,代码来源:d%%%%etc%%www%%test%%sms-phalcon%%app%%views%%versions%%system.volt.php