PHP Date Syntax & Example

DevOps

MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

Example of Date function in PHP

<?php
echo "Today is ".date("d")."<br>";
echo "Today is ".date("js")."<br>";
echo "Month is ".date("F")."<br>";
echo "Month is ".date("m")."<br>";
echo "Month is ".date("n")."<br>";
echo "Month is ".date("M")."<br>";
echo "Year is ".date("Y")."<br>";
echo "Year is ".date("y")."<br>";
echo "Full Date is ".date("d/m/Y")."<br>";
echo "Full Date is ".date("y/m/d")."<br>";
echo "week Day is ".date ("D")."<br>";
echo "week Day is ".date ("N")."<br>";
echo "week Day is ".date ("L")."<br>";
echo "Day is ".date("Z")."<br>";
echo "Week of the year ". date("W")."<br>";
echo "Is This is leap year". date("L");
?>Code language: HTML, XML (xml)

OutPut:

Today is 6
Today is 6th
Month is May
Month is 05
Month is may
Year is  2022
Year is 22
Full Date Is  6/05/2022
Full Date Is  2022-May-6
Week Day is  Fri
Week Day is  Friday
Week Day is 5
Day is 125 
Week of the year=18
NOCode language: JavaScript (javascript)
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x