PHP can obtain the week by timestamp. PHP implements the method of obtaining the week by timestamp. the example in this article describes how php obtains the week by timestamp. This article is for your reference. for details, use PHP to obtain the week by timestamp, and use php to obtain the week by timestamp.
This example describes how to obtain the week by timestamp in PHP. We will share this with you for your reference. The details are as follows:
Obtain the number of weeks of a timestamp and the number of weeks in the next few days.
Where:
$ Time indicates the time
$ I starting today
The sample code is as follows:
Function getTimeWeek ($ time, $ I = 0) {$ weekarray = array ("1", "2", "3", "4", "5 ", "6", "Day"); $ oneD = 24*60*60; return "week ". $ weekarray [date ("w", $ time + $ oneD * $ I)];} $ time = time (); echo getTimeWeek ($ tiem );