當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DateHelper::getElapsedTime方法代碼示例

本文整理匯總了PHP中DateHelper::getElapsedTime方法的典型用法代碼示例。如果您正苦於以下問題:PHP DateHelper::getElapsedTime方法的具體用法?PHP DateHelper::getElapsedTime怎麽用?PHP DateHelper::getElapsedTime使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DateHelper的用法示例。


在下文中一共展示了DateHelper::getElapsedTime方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

</div>
                <div class="cobaltValue">
                    <?php 
echo $deal->owner_first_name . " " . $deal->owner_last_name;
?>
                </div>
            </div>
        </div>
        <div class="threecolumn">
            <div class="small_info middle">
                <?php 
echo TextHelper::_('COBALT_EDIT_AGE');
?>
:
                    <?php 
echo DateHelper::getElapsedTime($deal->created);
?>
            </div>
            <div class="cobaltRow top">
                <div class="cobaltField"><?php 
echo TextHelper::_('COBALT_EDIT_STAGE');
?>
</div>
                <div class="cobaltValue">
                    <?php 
echo $deal->stage_name;
?>
                </div>
            </div>
            <div class="cobaltRow">
                <div class="cobaltField"><?php 
開發者ID:houzhenggang,項目名稱:cobalt,代碼行數:31,代碼來源:deal.php

示例2: strtoupper

            ?>
        <tr class="crmery_row_<?php 
            echo $k;
            ?>
">
            <td><?php 
            echo $link . $name;
            ?>
</a></td>
            <td><?php 
            echo JText::sprintf('COBALT_ACTIVITY_' . strtoupper($activity->action_type), ucwords(str_replace('_', ' ', $activity->type)), ucwords(str_replace(' id', '', str_replace(' 1', '', str_replace('_', ' ', $activity->field)))), $old_value, $new_value);
            ?>
</td>
            <td><?php 
            echo $activity->owner_name;
            ?>
</td>
            <td><?php 
            echo DateHelper::getElapsedTime($activity->date, true, true, true, true, true);
            ?>
</td>
        </tr>
    <?php 
        }
        ?>
    <?php 
    }
}
?>
</tbody>
開發者ID:houzhenggang,項目名稱:cobalt,代碼行數:30,代碼來源:latest_activities.php


注:本文中的DateHelper::getElapsedTime方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。