本文整理汇总了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>