To get a date for a specified year and week number, PHP can be implemented using the date() and strtotime() functions in combination. For example, Monday of the 18th week of 2024 can be obtained through the "2024-W18-1" format, and the output is 2024-04-29; if it needs to start with Sunday, you can add 6 days on a Monday basis, such as Sunday of the 18th week of 2024 is 2024-05-05; note that the ISO weekly standard starts on Monday as the weekly starting point, and there may be a New Year's Eve week at the beginning and end of the year. For example, Monday of the 1st week of 2020 is actually 2019-12-30. Therefore, when dealing with boundary situations, you should judge whether to use ISO standards or custom logic based on business needs.
Sometimes we need to obtain the corresponding date based on the given number of weeks and years, such as finding out what day the first day of the 18th week of a certain year is. PHP provides some functions to deal with this type of problem. Although it doesn't seem complicated, it is still prone to errors in details.

Quick fetch using date()
and strtotime()
The easiest way is to use PHP's date()
and strtotime()
functions to combine. For example, if you want to find the start date of a certain week of a certain year (usually Monday), you can write it like this:

$year = 2024; $week = 18; $date = date("Ymd", strtotime("{$year}-W{$week}-1")); // The -1 at the end represents the Monday of the week echo $date; // Output: 2024-04-29
The format "Y-Wn"
here is the ISO weekly numbering standard, -1
indicates the Monday of that week. This method is sufficient in most cases.
Pay attention to the weekly starting differences between different systems
Some systems have a week that starts on Sunday, while the ISO standard believes that a week begins on Monday. If your needs are not starting on Monday, you need to adjust manually.

For example, if you want to understand the "first day" of a certain week as a Sunday, you can do it like this:
- Calculate the date of the Monday of the week first
- Then subtract the day and get the last Sunday
- Or add 6 days to get this Sunday
For example:
$monday = new DateTime("2024-W18-1"); $sunday = clone $monday; $sunday->modify(' 6 days'); echo $sunday->format('Ym-d'); // Output 2024-05-05
This step seems to be a minor change, but if you are not careful, it is easy to cause the front and back end time logic to not match.
Handling Boundary Situation: Weeks at the beginning and end of the year
Weeks at the beginning and end of the year sometimes cross the New Year, for example, the first week of 2020 actually includes the days at the end of 2019. Using W
parameters may be a bit trampled at this time, so you need to pay special attention to whether the results are in line with your business logic.
Let me give you a practical example:
// I want to find the Monday echo date("Ymd", strtotime("2020-W01-1")); // Output 2019-12-30
You will find that the date you are returning is the 2019 date, because the ISO weekly rules require at least 4 days to be considered week 1 in the New Year. So this week actually starts on December 30, 2019.
If you want to ignore ISO rules and divide the number of weeks by natural months, you may have to write a logical judgment yourself.
Basically that's it. After mastering these key points, it is not difficult to use PHP to obtain the corresponding date of the week.
The above is the detailed content of php get date from week number and year. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

ToversionaPHP-basedAPIeffectively,useURL-basedversioningforclarityandeaseofrouting,separateversionedcodetoavoidconflicts,deprecateoldversionswithclearcommunication,andconsidercustomheadersonlywhennecessary.StartbyplacingtheversionintheURL(e.g.,/api/v

TosecurelyhandleauthenticationandauthorizationinPHP,followthesesteps:1.Alwayshashpasswordswithpassword_hash()andverifyusingpassword_verify(),usepreparedstatementstopreventSQLinjection,andstoreuserdatain$_SESSIONafterlogin.2.Implementrole-basedaccessc

Proceduralandobject-orientedprogramming(OOP)inPHPdiffersignificantlyinstructure,reusability,anddatahandling.1.Proceduralprogrammingusesfunctionsorganizedsequentially,suitableforsmallscripts.2.OOPorganizescodeintoclassesandobjects,modelingreal-worlden

PHPdoesnothaveabuilt-inWeakMapbutoffersWeakReferenceforsimilarfunctionality.1.WeakReferenceallowsholdingreferenceswithoutpreventinggarbagecollection.2.Itisusefulforcaching,eventlisteners,andmetadatawithoutaffectingobjectlifecycles.3.YoucansimulateaWe

To safely handle file uploads in PHP, the core is to verify file types, rename files, and restrict permissions. 1. Use finfo_file() to check the real MIME type, and only specific types such as image/jpeg are allowed; 2. Use uniqid() to generate random file names and store them in non-Web root directory; 3. Limit file size through php.ini and HTML forms, and set directory permissions to 0755; 4. Use ClamAV to scan malware to enhance security. These steps effectively prevent security vulnerabilities and ensure that the file upload process is safe and reliable.

In PHP, the main difference between == and == is the strictness of type checking. ==Type conversion will be performed before comparison, for example, 5=="5" returns true, and ===Request that the value and type are the same before true will be returned, for example, 5==="5" returns false. In usage scenarios, === is more secure and should be used first, and == is only used when type conversion is required.

Yes, PHP can interact with NoSQL databases like MongoDB and Redis through specific extensions or libraries. First, use the MongoDBPHP driver (installed through PECL or Composer) to create client instances and operate databases and collections, supporting insertion, query, aggregation and other operations; second, use the Predis library or phpredis extension to connect to Redis, perform key-value settings and acquisitions, and recommend phpredis for high-performance scenarios, while Predis is convenient for rapid deployment; both are suitable for production environments and are well-documented.

The methods of using basic mathematical operations in PHP are as follows: 1. Addition signs support integers and floating-point numbers, and can also be used for variables. String numbers will be automatically converted but not recommended to dependencies; 2. Subtraction signs use - signs, variables are the same, and type conversion is also applicable; 3. Multiplication signs use * signs, which are suitable for numbers and similar strings; 4. Division uses / signs, which need to avoid dividing by zero, and note that the result may be floating-point numbers; 5. Taking the modulus signs can be used to judge odd and even numbers, and when processing negative numbers, the remainder signs are consistent with the dividend. The key to using these operators correctly is to ensure that the data types are clear and the boundary situation is handled well.
