您好,登錄后才能下訂單哦!
這篇文章主要介紹PHP中如何通過strtotime()用字符串來創建日期,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
通過 PHP strtotime() 用字符串來創建日期
PHP strtotime() 函數用于把人類可讀的字符串轉換為 Unix 時間。
語法
strtotime(time,now)
下面的例子通過 strtotime() 函數創建日期和時間:
實例
<?php $d=strtotime("10:38pm April 15 2015"); echo "創建日期是 " . date("Y-m-d h:i:sa", $d); ?>
PHP 在將字符串轉換為日期這方面非常聰明,所以您能夠使用各種值:
實例
<?php $d=strtotime("tomorrow"); echo date("Y-m-d h:i:sa", $d) . "<br>"; $d=strtotime("next Saturday"); echo date("Y-m-d h:i:sa", $d) . "<br>"; $d=strtotime("+3 Months"); echo date("Y-m-d h:i:sa", $d) . "<br>"; ?>
不過,strtotime() 并不完美,所以請記得檢查放入其中的字符串。
以上是“PHP中如何通過strtotime()用字符串來創建日期”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。