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 is the name of the scripting engine that powers PHP?
How to create a session? How to set a value in session? How to remove data from a session?
How do you connet mysql database with php?
what is benefit of magento?
How does php work?
What is apache and php?
Which software is best for php?
How failures in execution are handled with include() and require() functions?
Which is better mysql or sql?
Can you define an argument as a reference type?
What is difference between get and post?
Explain the installation of PHP on UNIX systems?
What is the use of array_search() in php?
What is a php namespace?
Is php easier than node?