how to count how many sundays in month?
Answer Posted / vinayan
$n=1;
$yy=date("Y");
//$day=strftime("%A");
$day1=getdate(mktime(0,0,0,01,01,$yy));
$day=$day1[weekday];
switch($day)
{
case Sunday:$n=0;
break;
case Monday:$n=$n+6;
break;
case Tuesday:$n=$n+5;;
break;
case Wednesday:$n=$n+4;;
break;
case Thursday:$n=$n+3;;
break;
case Friday:$n=$n+2;;
break;
case Saturday:$n=$n+1;;
break;
}
$yy=date("Y");
$mon=12;
$day=31;
$curyear=$yy."-".$mon."-".$day;
$timeStamp = strtotime($yy."-01-00");
$timeStamp += 24 * 60 * 60 * $n; // (add 7 days)
$newDate = date("Y-m-d", $timeStamp);
| Is This Answer Correct ? | 21 Yes | 14 No |
Post New Answer View All Answers
What are different types of errors available in Php?
What is constructor and destructor?
Can php use gettext?
How can I embed a java program in php file and what changes have to be done in php.ini file?
Tell me what is the difference between characters 34 and x34?
Does php 7 support mysql?
What is the difference between query and question?
What does the expression exception::__tostring means?
What is the super method?
Is php used anymore?
Applications written to provide a GUI shell for Unix and Linux are called
Explain Type juggling?
What is the difference between pop3 IMAP and MAPI?
What is the use of super-global arrays in php?
Does php support polymorphism?