當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。