当前位置: 首页>>代码示例>>PHP>>正文


PHP StringUtils::nice_duration方法代码示例

本文整理汇总了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>&nbsp;" . $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) {
开发者ID:vinod-co,项目名称:centa,代码行数:31,代码来源:user_index.php

示例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>&nbsp;</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 
开发者ID:vinod-co,项目名称:centa,代码行数:31,代码来源:index.php


注:本文中的StringUtils::nice_duration方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。