Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

dates

<?php

$date="01-02-2019";
$month_timestamp = strtotime($date);
echo $month_timestamp;
if(date("W", $month_timestamp)==1)
{
	$kbd1_month_num="01";
}
else
{
	// We need to find the monday of the week to assign the kbd1 to the right month
	$kbd1_month_num=date('m', strtotime(date("o", $month_timestamp).'-W'.date("W", $month_timestamp)));
}
$kbd1_year_num=date("o", $month_timestamp);
echo "<br/>";
echo "Week:".date("W", $month_timestamp);
echo "<br/>";
echo "Month:".$kbd1_month_num;
echo "<br/>";
echo "Year:".$kbd1_year_num;

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.