本文整理汇总了PHP中CDate::getAMPM方法的典型用法代码示例。如果您正苦于以下问题:PHP CDate::getAMPM方法的具体用法?PHP CDate::getAMPM怎么用?PHP CDate::getAMPM使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CDate
的用法示例。
在下文中一共展示了CDate::getAMPM方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: arraySelect
" class="text" disabled="disabled" />
<a href="#" onClick="popCalendar(document.datesFrm.start_date)">
<img src="./images/calendar.gif" width="24" height="12" alt="<?php
echo $AppUI->_('Calendar');
?>
" border="0">
</a>
</td>
<td>
<table><tr>
<?php
echo "<td>" . arraySelect($hours, "start_hour", 'size="1" onchange="setAMPM(this)" class="text"', $start_date ? $start_date->getHour() : $start) . "</td><td>" . " : " . "</td>";
echo "<td>" . arraySelect($minutes, "start_minute", 'size="1" class="text"', $start_date ? $start_date->getMinute() : "0") . "</td>";
if (stristr($AppUI->getPref('TIMEFORMAT'), "%p")) {
echo '<td><input type="text" name="start_hour_ampm" id="start_hour_ampm" value="' . ($start_date ? $start_date->getAMPM() : ($start > 11 ? "pm" : "am")) . '" disabled="disabled" class="text" size="2" /></td>';
}
?>
</tr></table>
</td>
</tr>
<tr>
<td align="right" nowrap="nowrap"><?php
echo $AppUI->_('Finish Date');
?>
</td>
<td nowrap="nowrap">
<input type="hidden" name="task_end_date" id="task_end_date" value="<?php
echo $end_date ? $end_date->format(FMT_TIMESTAMP_DATE) : '';
?>
" />