本文整理汇总了PHP中Viewer::viewDateTime方法的典型用法代码示例。如果您正苦于以下问题:PHP Viewer::viewDateTime方法的具体用法?PHP Viewer::viewDateTime怎么用?PHP Viewer::viewDateTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Viewer
的用法示例。
在下文中一共展示了Viewer::viewDateTime方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
<ul>
<li>
<p><cite><?php
echo $journeyPart->getTrain();
?>
</cite>: <?php
echo $journeyPart->getStartStation();
?>
> <?php
echo $journeyPart->getEndStation();
?>
(<?php
echo Viewer::viewDateTime($journeyPart->getStart());
?>
– <?php
echo Viewer::viewDateTime($journeyPart->getEnd());
?>
</td>) <?php
echo $journeyPart->getLength();
?>
km
<?php
if (!is_null($journeyPart->getCar()) || !is_null($journeyPart->getNote()) || !is_null($journeyPart->getLocomotive())) {
?>
*</p><p>*)
<?php
if (!is_null($journeyPart->getLocomotive())) {
?>
<em>Lokomotiva</em>: <?php
echo $journeyPart->getLocomotive();
}