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


PHP CDate::getAMPM方法代碼示例

本文整理匯總了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) : '';
    ?>
" />
開發者ID:klr2003,項目名稱:sourceread,代碼行數:31,代碼來源:ae_dates.php


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