1 / 20

PHP 日期處理與自訂函數

PHP 日期處理與自訂函數. 教材. 葉建榮 著( 2010 ), PHP6 與 MySQL 基礎學習教室, 上奇資訊股份有限公司, ISBN 9789862570500 (書號 HB1004 ) 陳會安 著( 2013 ), PHP+MySQL 與 jQuery Mobile 跨行動裝置網站開發, 碁峰資訊股份有限公司, ISBN 9789862768563 (書號 ACL037900 ). 大綱. PHP 時間的調整 時間的設定 自訂函數 表單資料傳遞. 時區設定. 時區設定 台灣: UTC+8

Download Presentation

PHP 日期處理與自訂函數

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. PHP日期處理與自訂函數

  2. 教材 葉建榮 著(2010), PHP6 與 MySQL 基礎學習教室, 上奇資訊股份有限公司, ISBN 9789862570500 (書號 HB1004) 陳會安 著(2013), PHP+MySQL 與 jQuery Mobile 跨行動裝置網站開發, 碁峰資訊股份有限公司, ISBN 9789862768563 (書號 ACL037900)

  3. 大綱 PHP時間的調整 時間的設定 自訂函數 表單資料傳遞

  4. 時區設定 • 時區設定 • 台灣: UTC+8 • Coordinated Universal Time (UTC) • 世界協調時間,又稱世界標準時間 • Greenwich Mean Time (GMT) • 格林威治標準時間 • 設定在 /etc/php.ini

  5. 日期/時間格式化:date( ) 設定日期時間格式,大小寫代表不同意義

  6. 日期/時間格式化:date( )

  7. 以程式設定時區 date_default_timezone_set() date_default_timezone_get()

  8. 以程式設定時區 ini_set( )

  9. date( )函數的運用

  10. 設定時間 • mktime (小時,分鐘,秒數,月份,日期, 年份, 夏天日光節約時間) • 結果為秒數: • 自1970年1月1日至今 • Unix 誕生

  11. 設定時間

  12. 自訂函數 將常用的功能製作成一個可以重複使用的單元 以參數傳遞資料

  13. 自訂函數:沒有傳入與傳回值

  14. 自訂函數:有傳入沒有傳回值

  15. 自訂函數:有傳入有傳回值

  16. 自訂函數:有傳入有傳回值

  17. 自訂函數:有傳入有傳回值

  18. 練習:最大公因數 輸入:兩個正整數 輸出:兩數的最大公因數 輾轉相除法

  19. 自訂函數:利用陣列傳回多個值

  20. 練習:計算身體質量指數BMI • 輸入: • 身高(公分) • 體重(公斤) • 輸出: • BMI • 健康、過重、過輕

More Related