I am currently working on a project about schedules. Given a start time and an end time, I need to list the dates within this time period and determine the day of the week at the same time. After research, I have come up with the following method, which I would like to share with you for the convenience of friends in need.
First post the renderings of this demand:
The following is the specific code snippet:
/*
*参数分别是开始时间戳,结束时间戳
*/
function timeList($beginTimeStamp,$endTimeStamp){
if(!is_numeric($beginTimeStamp)||!is_numeric($endTimeStamp)||($endTimeStamp<h4>Articles you may be interested in</h4>
Copy after login
- php method to get each month within a certain period of time, return an array composed of these months
- php get today, Methods for the start timestamp and end timestamp of yesterday, last week, and this month
- PHP gets the date list 30 days before the current date
- Why do programmers estimate the time and the actual completion of the project There is always an error in the time
- PHP realizes instant output of the results to the browser
- Solution to the 8-hour difference in date time in php
- php extracts the ID number in Birthday date and function to verify whether a minor is a minor
- php method to get a list of all pictures in the content and output it
http://www.bkjia.com/PHPjc/764088.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/764088.htmlTechArticleI am currently working on a project about schedules, giving a start time and an end time, and I need to list this List of dates within a time period and determine the day of the week at the same time. After research, we got...