他在那里!
我有计算百分比的函数,这些百分比是基于时间的。有一个开始时间(例如 15:00)和一个结束时间(例如 15:05)。如果我在 15:02 调用这个函数,结果将是 40%。
public function getBuildPercentage() {
$currentTime = strtotime(date('Y-m-d H:i:s')); //50
$boughtTime = strtotime($this->boughtTime);
$finishTime = strtotime($this->finishTime); //100
$first = $currentTime - $boughtTime;
$second = $finishTime - $boughtTime;
$percentage = round(($first / $second) * 100);
// if the percentage is higher than 100 -> item is finished
if($percentage >= 100)
$this->setToFinished($this->id);
return $percentage;
}
我使用引导进度条小部件显示此百分比,如下所示:
<?php
$this->widget(
'bootstrap.widgets.TbProgress',
array(
'type' => 'success',
'percent' => $item->getBuildPercentage(),
'htmlOptions' => array(
'data-toggle' => 'tooltip',
'title' => 'Approximately ...to go.'
)
)
)
?>
目前,用户必须刷新页面才能看到百分比的确切值和正确的进度条。
如果进度条会动态更新(因此无需刷新),那将是非常酷的。
最好的方法是什么?阿贾克斯?(我没有这方面的经验,所以如果你也能举个例子,那就太好了!)
非常感谢您的时间和精力。