本文整理匯總了PHP中XDateTime::printTime4www方法的典型用法代碼示例。如果您正苦於以下問題:PHP XDateTime::printTime4www方法的具體用法?PHP XDateTime::printTime4www怎麽用?PHP XDateTime::printTime4www使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類XDateTime
的用法示例。
在下文中一共展示了XDateTime::printTime4www方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
<tr>
<td class="tdl">大夫</td>
<td class="tdl">谘詢範圍</td>
<td class="tdl textct">谘詢回複情況</td>
<td class="tdl textct">最新在線</td>
<td class="tdl">聯係大夫</td>
</tr>
<?php
foreach ($spaceList as $space)
{
if (true == $space->isCaseAndNewCaseOpen() && false == $space->isRefusedNewCase() && $space->user->allowAnswer() && 0 != $space->modulecase->allowNewMaxNumber){
$dtitle = (string)$space->host->grade ? '<br />' . $space->host->grade : '';
$dgrade = (string)$space->host->educateGrade ? '<br/>' . $space->host->educateGrade : '';
$dspecialilze = (string)$space->commonCaseNote ? $space->commonCaseNote : $space->host->specialize;
$dspecialilze = XString::truncate($dspecialilze, 84);
$temp = XDateTime::printTime4www($space->activityTime);
if ($temp == '0分鍾前') {
$temp = '';
} else {
$temp .= '在線';
}
?>
<tr>
<td class="tda">
<li><a target="_blank" href="<?=$space->host->getUrl() ?>" title="<?=$space->host->name?>"><?=$space->host->name ?></a>
<a href="<?=$space->getUrl()?>"
title="<?=$space->host->name?>大夫的個人網站" target="_blank"> <img
src="http://i1.hdfimg.com/images/common/iconhome16.gif" width="16"
height="16" align="absmiddle" id="homepage_<?=$space->id?>" /></a> <?=$dtitle.$dgrade?>
</li>
</td>