您好,登錄后才能下訂單哦!
這篇文章主要介紹PHP如何將秒數轉成格式為天時分秒,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
PHP代碼如下:
<?php function convert_seconds($seconds) { $dt1 = new DateTime("@0"); $dt2 = new DateTime("@$seconds"); return $dt1->diff($dt2)->format('%a 天, %h 時, %i 分 %s 秒'); } echo convert_seconds(200000)."<br>";
輸出結果是:
這里需要大家了解一個類,就是DateTime類。(推薦文章:《php中的datetime類怎么使用?php中datetime的用法介紹》)
DateTime更新日志如下:
PHP7.2.0版本:DateTime 的類常量現在定義在 DateTimeInterface 上。 PHP7.0.0版本:新增常量:DATE_RFC3339_EXTENDED 和 DateTime::RFC3339_EXTENDED。 PHP5.5.0版本:實現 DateTimeInterface 接口。 PHP5.4.24版本:COOKIE 格式從 2 位數字表示年份(RFC 850) 修改為 4 位數字表示年份(RFC 1036)。 PHP5.2.2版本:DateTime 對象進行比較操作(comparison operators)的時候 可以正常工作了。 在之前的版本中,當使用 == 進行相等比較的時候, 所有的 DateTime 對象都會被視為是相等的。
相關介紹:
DateTime::add — 給一個 DateTime 對象增加一定量的天,月,年,小時,分鐘 以及秒。 DateTime::__construct — 返回一個新的 DateTime 對象 DateTime::createFromFormat — 根據給定的格式解析日期時間字符串 DateTime::createFromImmutable — Returns new DateTime object encapsulating the given DateTimeImmutable object DateTime::createFromInterface — Returns new DateTime object encapsulating the given DateTimeInterface object DateTime::getLastErrors — 獲取警告和錯誤信息 DateTime::modify — 修改日期時間對象的值 DateTime::__set_state — __set_state 魔術方法處理函數 DateTime::setDate — 設置 DateTime 對象的日期 DateTime::setISODate — 設置 ISO 日期 DateTime::setTime — 設置 DateTime 對象的時間 DateTime::setTimestamp — 以 Unix 時間戳的方式設置 DateTime 對象 DateTime::setTimezone — 設置 DateTime 對象的時區 DateTime::sub — 對一個 DateTime 對象減去一定量的 日、月、年、小時、分鐘和秒。
以上是“PHP如何將秒數轉成格式為天時分秒”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。