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


PHP date::full_date_time方法代碼示例

本文整理匯總了PHP中date::full_date_time方法的典型用法代碼示例。如果您正苦於以下問題:PHP date::full_date_time方法的具體用法?PHP date::full_date_time怎麽用?PHP date::full_date_time使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在date的用法示例。


在下文中一共展示了date::full_date_time方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __get

 /**
  * Output dates as friendly dates
  * @developer Brandon Hansen
  * @date May 16, 2010
  */
 public function __get($key)
 {
     if (in_array($key, array('created_at', 'modified_at'))) {
         return date::full_date_time(parent::__get($key));
     } else {
         return parent::__get($key);
     }
 }
開發者ID:ready4god2513,項目名稱:Journal,代碼行數:13,代碼來源:MY_ORM.php

示例2: foreach

				<th>Status</th>
				<th>Amount</th>
				<th>Notes</th>
			</tr>
		</thead>
		<tbody>
			<?php 
    foreach ($orders as $order) {
        ?>
				<tr>
					<td><?php 
        echo html::anchor($order->show_path(), '#' . $order);
        ?>
</td>
					<td><?php 
        echo date::full_date_time($order->created_at);
        ?>
</td>
					<td><?php 
        echo $order->status;
        ?>
</td>
					<td><?php 
        echo format::dollar_format($order->order_amount());
        ?>
</td>
					<td><?php 
        echo $order->notes;
        ?>
</td>
				</tr>
開發者ID:ready4god2513,項目名稱:scs,代碼行數:31,代碼來源:index.php

示例3:

<?php

if (frache::start('blog_entry_' . (string) $blog)) {
    ?>
<div class="journal_entry">
	<div class="journal_meta">
		 <?php 
    echo html::anchor($blog->show_path(), $blog->title);
    ?>
		 <span class="the_time"><?php 
    echo date::full_date_time($blog->created_at);
    ?>
</span>
	</div>
	<div class="journal_entry_content">
		<?php 
    echo nl2br($blog->content);
    ?>
	</div>
</div>
<?php 
    frache::stop();
}
開發者ID:ready4god2513,項目名稱:Journal,代碼行數:23,代碼來源:_entry.php

示例4: nl2br

<div class="journal_entry">
	<div class="journal_meta">
		 <?php 
echo html::anchor($journal->show_path(), $journal->title);
?>
		 <span class="edit_journal_link"><?php 
echo html::anchor($journal->edit_path(), '(Edit)');
?>
</span>
		 <span class="the_time"><?php 
echo date::full_date_time($journal->created_at);
?>
</span>
	</div>
	<div class="journal_entry_content">
		<?php 
echo nl2br($journal->content);
?>
	</div>
</div>
開發者ID:ready4god2513,項目名稱:Journal,代碼行數:20,代碼來源:_journal.php

示例5: foreach

<h4>Order History</h4>
<table>
	<thead>
		<tr>
			<th>Time</th>
			<th>Status</th>
		</tr>
	</thead>
	<tbody>
		<?php 
foreach ($order->order_histories as $history) {
    ?>
		<tr>
			<td><?php 
    echo date::full_date_time($history->created_at);
    ?>
</td>
			<td><?php 
    echo $history->status;
    ?>
</td>
		</tr>
		<?php 
}
?>
	</tbody>
</table>

<div id="order_billing_shipping">
	<address>
開發者ID:ready4god2513,項目名稱:scs,代碼行數:30,代碼來源:show.php


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