本文整理汇总了PHP中StringUtils::nice_duration方法的典型用法代码示例。如果您正苦于以下问题:PHP StringUtils::nice_duration方法的具体用法?PHP StringUtils::nice_duration怎么用?PHP StringUtils::nice_duration使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StringUtils
的用法示例。
在下文中一共展示了StringUtils::nice_duration方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: number_format
echo $string['unidirectional'] . ' <img src="../artwork/tooltip_icon.gif" class="help_tip" title="' . $string['tooltip_unidirectional'] . '" />';
}
echo '</td></tr>';
if ($test_type < 3) {
echo '<tr><td class="f">' . $string['marks'] . '</td>';
echo '<td colspan="3">' . $total_marks;
if ($marking == 1) {
echo ' (' . $string['adjusted'] . ' ' . number_format($total_random_mark, 2, '.', ',') . ')';
echo ' <img src="../artwork/tooltip_icon.gif" class="help_tip" title="' . $string['tooltip_adjustmark'] . '" />';
}
echo '</td></tr>';
}
echo "<tr><td class=\"f\"><nobr> " . $string['currentuser'] . "</nobr></td><td>{$person}</td>";
if ($exam_duration) {
$duration_mins = calculate_duration($exam_duration, $extra_time_mins, $special_needs_percentage);
echo '<td class="f">' . $string['duration'] . '</td><td>' . StringUtils::nice_duration($duration_mins, $string) . '</td>';
} else {
echo '<td></td><td></td>';
}
echo '</tr>';
if ($display_remaining_time === true) {
?>
<tr>
<td></td>
<td></td>
<td class="f"><?php
echo $string['timeremaining'];
?>
</td>
<?php
if ($remaining_time == 0) {
示例2:
<td><?php
echo $string['end'];
?>
</td>
<td><?php
echo $end_date;
?>
</td>
</tr>
<tr>
<td><?php
echo $string['duration'];
?>
</td>
<td><?php
echo StringUtils::nice_duration($exam_duration, $string);
?>
</td>
</tr>
<tr>
<?php
if ($password == '') {
echo "<td> </td><td></td>\n";
} else {
echo "<td class=\"password\">" . $string['password'] . " <img src=\"../artwork/key.png\" width=\"16\" height=\"16\" /></td><td style=\"font-family:'Lucida Console', monospace\">{$password}</td>\n";
}
?>
</tr>
<tr>
<td colspan="4"><input type="button" onclick="newPaperNote(<?php