Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!
We spend hours on Instagram and YouTube and waste money on coffee and fast food, but wonβt spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!
Learn from Guru Rajesh Kumar and double your salary in just one year.

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");
?>
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
NO