How to Find Day Name from Specific Date in PHP?
Whenever you need to det day like Monday, Tuesday etc from full date. i mean you have any specific date like "2015-10-10" and you want to get day then you can do in both way first using strtotime() and second using DateTime object.
In Following example you can see i give you both way to get day from your date. now i added format 'l' so it will return full name of day like "Tuesday", but if you want to get short name of day then you can change format like "D".
Example 1:
index.php
<?php
$specificDate = strtotime('2023-01-28');
$day = date('l', $specificDate);
var_dump($day);
?>
Output:
string(8) "Saturday"
Example 2:
index.php
<?php
$specificDate = strtotime('2023-01-28');
$yourDate = DateTime::createFromFormat("Y-m-d", $specificDate);
var_dump($yourDate->format("l"));
?>
Output:
string(8) "Saturday"
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Check Current PHP Version in Ubuntu?
- How to Remove Numbers from String in PHP?
- How to Convert Camel Case to Snake Case in PHP?
- PHP nl2br() Function Example Tutorial
- How to Add Text Watermark to Image in PHP?
- How to Remove First Element from Array in PHP?
- How to Check if String Contains Specific Word in Laravel?
- How to Get Specific Key Value from Multidimensional Array PHP?
- How to Get File Name without Extension in PHP?
- How to Get a Current Page URL in PHP?
- How to Convert Array Values to Lowercase in PHP?
- How to Count Number of Files in a Directory in PHP?
- How to Remove Null Values from Array in PHP?