A PHP Class
It's a PHP class that will output the dates of the given month in array. But in order to make the dates fit their place in the week, the class outputs zeros in the place of "empty" days. So the first week of a month starting in Wednesday would be this array:[0, 0, 1, 2, 3, 4, 5]
This allows you to loop through the returned arrays without worrying where to start the week. If you use a table, you could simply output " " when the date is 0 and output the number (and colored background) when the date is a number. Here is an example in HTML:
Using the output in HTML:
<table>
<tr><th>Mon</th><th>Tue</th><th>Wed</th><th>Thu</th><th>Fri</th><th>Sat</th><th>Sun</th></tr>
<?php for($i=1;$i<=$num_weeks;$i++):?>
<tr>
<?php $days=$_calendar->days($m[0], $m[1], $i, $num_weeks);
foreach($days as $day):?>
<td><?=$day?$day:" "?></td>
<?php endforeach;?>
</tr>
<?php endfor;?>
</table>
Easy, eh? We just output a table row for every week in the month ($num_weeks is also a method in the class as you'll see below) and for the days with date we output the date (otherwise just blank space).
You can see how it works live in this period calendar.
The PHP Code
Now, here is how it all works. I created a class to hold 3 functions:num_weeks($month, $year) - to calculate the number of weeks in the given month and year
first_day($month, $year) - to find out which day of the week is the first day of a given month.year
days($month, $year, $week, $num_weeks=0) - this is the main method that returns the array of 7 days. The week starts in Monday.
Here is the full code below and some comments to it:
function num_weeks($month, $year)
{
// every month has at least 4 weeks
$num_weeks=4;
// finding where it starts
$first_day = $this->first_day($month, $year);
// if the first week doesn't start on monday
// we are sure that the month has at minimum 5 weeks
if($first_day!=1) $num_weeks++;
// find the "widow" days (i.e. empty cells in the 1st week)
$widows=$first_day-1;
$fw_days=7-$widows;
if($fw_days==7) $fw_days=0;
// number of days in the month
$numdays=date("t",mktime(2, 0, 0, $month, 1, $year));
if( ($numdays - $fw_days) > 28 ) $num_weeks++;
// that's it!
return $num_weeks;
}
Then the first_day function:
function first_day($month, $year)
{
$first_day= date("w", mktime(2, 0, 0, $month, 1, $year));
if($first_day==0) $first_day=7; # convert Sunday
return $first_day;
}
And here is the most important one:
// here $week is the week number when we go in a loop
// (see the html code that I posted earlier to get better idea)
function days($month, $year, $week, $num_weeks=0)
{
$days=array();
// this is just to avoid calling num_weeks every time
// when you loop through the weeks
if($num_weeks==0) $num_weeks=$this->num_weeks($month, $year);
// find which day of the week is 1st of the given month
$first_day = $this->first_day($month, $year);
// find widow days (first week)
$widows=$first_day-1;
// first week days
$fw_days=7-$widows;
// if $week==1 don't do further calculations
if($week==1)
{
for($i=0;$i<$widows;$i++) $days[]=0;
for($i=1;$i<=$fw_days;$i++) $days[]=$i;
return $days;
}
// any other week
if($week!=$num_weeks)
{
$first=$fw_days+(($week-2)*7);
for($i=$first+1;$i<=$first+7;$i++) $days[]=$i;
return $days;
}
# only last week calculations below
// number of days in the month
$numdays=date("t",mktime(2, 0, 0, $month, 1, $year));
// find orphan days (last week)
$orphans=$numdays-$fw_days-(($num_weeks-2)*7);
$empty=7-$orphans;
for($i=($numdays-$orphans)+1;$i<=$numdays;$i++) $days[]=$i;
for($i=0;$i<$empty;$i++) $days[]=0;
return $days;
}
That's it! Any questions?
PHP is a very fast programming language for business. Thanks for sharing this information which is useful for all.
ReplyDeletephp web development
PHP is the best server side scripting language! I was is search of this php calender code ,thanks for sharing. I hope to see some more interesting php codes in this blog in near future.
ReplyDeleteEcommerce Design
I was looking for the same calendar info for a long time thanks for sharing.
ReplyDeleteIt is great for beginner PHP learners.Thanks for all these information i hope to see more interesting and knowledgeable blog in near future.
ReplyDeleteFuck Your mother
ReplyDeleteFind a php calendar here: http://bohemiawebsites.com/component/option,com_jdownloads/Itemid,382/cid,68/task,view.download/
ReplyDeleteYou can find more than 300 pages worth of php tutorials at http://bohemiawebsites.com/Our-Blog.html
PHP contain the many class.but calender class provide the long time information.it also show the day and hours.actually its is great.
ReplyDeleteGreat Post for PHP learners..This is wonderful post. I do hope you intend to post more of these types of information. Thank you for this interesting information...
ReplyDeleteWeb Designing Company in Chandigarh
EMC SAN Online Training is a best course all top company requires this,W3 D technology provides EMC SAN Online Training course with Certification and E-books , Videos
DeleteEMC SAN Online Training | Storage Area Network Course
Thanks. It's awesome ,it is realy helpful
ReplyDeleteWeb Development Company in Indore
I don't know how to use it to print calendar in HTML
ReplyDeleteAfter make index.php file with HTML code from above, and then file calndar.class.php and put to the index.php code only calendar header with days show up... where are days?
ReplyDeleteVery nice explanation on creating a calender.
ReplyDeletePHP Training in chennai
Excellent post, for php developers, this class will allow you to add calendars in a variety of display types with only a few lines of code. Read more…
ReplyDeleteCheck this site Mindmajix for indepth PHP Tutorials
Go here if you’re looking for information on PHP Blogs
Nice blog...Very useful information is providing by ur blog. Great beginning php tutorials Very clear and helpful for beginners.
ReplyDeleteThank you for the informative post. Must appreciated.
ReplyDeleteShashaa
HTML5 Course in Velachery
Great Article..
ReplyDeletePHP Training in Chennai
Online PHP Training
Online PHP Training India
PHP Training Chennai
PHP Training institute in Chennai
Thanks for sharing this wonderful information.Its very nice blog PHP
ReplyDeleteThanks for sharing great information in your blog. Got to learn new things from your Blog . It was very nice blog to learn about php
ReplyDeletethanks for sharing
ReplyDeleteSAP GTS Training In Hyderabad
thanks for giving this type of informative blog,we learn more things about tips for seo which is involves the detailed information about optimization of blogger.
ReplyDeleteSAP Training in Chennai
I have read your blog its very attractive and impressive. I like it your blog.
ReplyDeletePHP Training in chennai | PHP Training Course
PHP Training in chennai | Online PHP Course
EMC SAN Online Training is a best course all top company requires this,W3 D technology provides EMC SAN Online Training course with Certification and E-books , Videos
ReplyDeleteEMC SAN Online Training | Storage Area Network Course
ReplyDeleteYa that's great to have blog like this it may clear the many thought from this
Pega Training
PlSQL Training
AWS Training
Teradata Training
Qlikview Training
Informatica MDM Training
Nice blog on php development. The information you are providing through this blog is very helpful to beginner Php Developers .
ReplyDeleteThanks
You have written wonderful article. Greetings and thank you...
ReplyDelete6 weeks php Industrial Training
PHP 6 weeks Industrial Training
6 weeks php industrial training in chandigarh
6 month php training in chandigarh
My friend Suggest me this blog and I can say this is the best blog to get the basic knowledge.Thank you so much for this Selenium Training in Chennai
ReplyDeleteHave you been thinking about the power sources and the tiles whom use blocks I wanted to thank you for this great read!! I definitely enjoyed every little bit of it and I have you bookmarked to check out the new stuff you post. java training jalandhar
ReplyDeleteThis is my first visit to your blog, your post made productive reading, thank you. dot net training in chennai
ReplyDelete
ReplyDeleteThis is best PHP tutorial in youtube. you can learn full coding and also the best expamles in here. This the best of learning and earning ways of youtube.
You can the full boston php tutorial.
click here PHP tutorial
for more youtube tutorials
website php tutorial for beginners
Well explained. Got to learn new things from your Blog on Appium.Appium training in chennai
ReplyDeleteNice article
ReplyDeleteThanks for sharing the informative blog.
ASP.NET Training In Bangalore
Very Useful Post!Thanks!
ReplyDeletePHP Programming Help
You post explain everything in detail and it was very interesting to read. Thank you. nata coaching centres in chennai
ReplyDeleteIt's interesting that many of the bloggers your tips helped to clarify a few things for me as well as giving.. very specific nice content. And tell people specific ways to live their lives.Sometimes you just have to yell at people and give them a good shake to get your point across.
ReplyDeleteMobile App Development Company
Android app Development Company
ios app development Company
Mobile App Development Companies
Nice to read your article! very informative.So, please keep posting PHP Stuff here Thanks.......
ReplyDeleteYou have provided an nice article, Thank you very much for this one. And i hope this will be useful for many people.. and i am waiting for your next post keep on updating these kinds of knowledgeable things...
ReplyDeletePHP training in chennai
Informative article, just what I was looking for.seo services chennai
ReplyDeleteThis blog explains the details of PHP. This helps to learn about what are all the different method is there. And the working methods all of that are explained here. Informative blog.For more Details Or information Visit Intellipaat
ReplyDeleteHi ,
ReplyDeleteNice article.Thank you for sharing the information.I really glad enjoy read that topic.I appreciate post for your.
php Training in Chandigarh
This blog is having the general information. Got a creative work and this is very different one.We have to develop our creativity mind.This blog helps for this. Thank you for this blog. This is very interesting and useful.
ReplyDeletePEGA Training in Chennai
Its fantatic explaintion lot of information gather it...nice article....
ReplyDeleteseo company in Chennai
Great post! I am actually getting ready to across this information, It's very helpful for this blog.Also great with all of the valuable information you have Keep up the good work you are doing well.
ReplyDeletePEGA Training in Chennai
Its a wonderful post and very helpful, thanks for all this information. You are including better information regarding this topic in an effective way.Thank you so much
ReplyDeleteInstallment Loans Near Me
Title loans Near Me
Cash Advances Near Me
I feel happy to have Spent my time in reading such a useful blog.....
ReplyDeleteSAP Training in Chennai
Needed to compose one simple word yet thanks for the suggestions that you are contributed here, please do keep updating us...
ReplyDeleteDevOps Training in Chennai | DevOps Online Training in Chennai
Great post..thanks for sharing the valuable content..good work keep it up.
ReplyDeleteBest software Training institute in Bangalore
fantastic information! keep sharing.
ReplyDeleteThank you for sharing wonderful information with us to get some idea about that content. check it once through
ReplyDeleteMachine Learning With TensorFlow Training and Course in Tel Aviv
| CPHQ Online Training in Beirut. Get Certified Online
Read all the information that i've given in above article. It'll give u the whole idea about it.
ReplyDeleteDevOps Training in Bangalore
DevOps Training in Pune
DevOps Online Training
Hey, would you mind if I share your blog with my twitter group? There’s a lot of folks that I think would enjoy your content. Please let me know. Thank you.
ReplyDeleteAzure Training in Chennai | Best Azure Training in Chennai
Salesforce Training in Chennai | Best Salesforce Training in Chennai
PowerBI Training in Chennai | Best PowerBI Training in Chennai
MSBI Training in Chennai | Best MSBI Training in Chennai
Java Training in Chennai | Best Java Training in Chennai
Software Testing Training in Chennai | Best Software Testing Training in Chennai
Great blog!! Worthy information that you shared is very useful for my studies. happy sharing!!
ReplyDeleteDevops Training in Chennai
Devops Certification in Chennai
Big Data Training in Chennai
German Classes in Chennai
German Language Classes in Chennai
Python Training in Chennai
Devops Training in Porur
Maka dari itu, dikesempatan ini admin akan memperkenalkan kepada anda beberapa Situs QQ Terbaru dan Terpercaya yang ada di Indonesia pada tahun 2019 – 2020 ini. Diantara para pembaca artikel ini, tentu saja mencari keberuntungan dengan bermain pada website baru.
ReplyDeleteasikqq
dewaqq
sumoqq
interqq
pionpoker
bandar ceme terbaik
hobiqq
paito warna terlengkap
syair sgp
For Devops Training in Bangalore Visit: Devops Training in Bangalore
ReplyDeleteNice...
ReplyDeletebitwise aptitude questions
how to hack flipkart legally
zenq interview questions
count ways to n'th stair(order does not matter)
zeus learning subjective test
ajax success redirect to another page with data
l&t type 2 coordination chart
html rollover image
hack android phone using cmd
how to hack internet speed upto 100mbps
Good...
ReplyDeleteinternships in chennai
winter internship mechanical engineering
internship for aeronautical engineering students in india 2019
kaashiv
list of architectural firms in chennai for internship
paid internships in pune for computer science students
diploma final year project topics for information technology
internship
data science internship report
inplant training
Thanks for sharing information
ReplyDeleteWe are the best piping design course in Hyderabad, India. Sanjary academy Offers Piping Design Course and Best Piping Design Training Institute in Hyderabad. Piping Design Institute in India Piping Design Engineering.
Piping Design Course
Piping Design Course in india
Piping Design Course in hyderabad
Good Information
ReplyDeleteSanjary kids is the best playschool, preschool in Hyderabad, India. Start your play school,preschool in Hyderabad with sanjary kids. Sanjary kids provides programs like Play group,Nursery,Junior KG,Serior KG,and Teacher Training Program.
play school in hyderabad, India
Preschool in hyderabad, India
Preschool teacher training course in hyderabad, India
pre and primary teacher training course in hyderabad,India
early childhood teacher training course in hyderabad, India
Nice...
ReplyDeletet system placement paper
advantages of package in java
2xwy cable full form
react native developer resume sample
log(a2/bc) + log(b2/ac(c2/ab) is
error: cannot find module '../lib/utils/unsupported.js'
django.core.exceptions.improperlyconfigured: error loading mysqldb module.
infix to postfix python
what is your biggest achievement yahoo answers
toughest pattern programs in c
Good...
ReplyDeleteece internship
internships for cse students
internships in chennai for cse students
internships in chennai for cse students 2019
internship for ece
internship in chennai for mechanical
10 days internship
mechanical internship certificate
internship for aerospace engineering students
winter internship 2019 for cse students
Good information
ReplyDeleteBest QA / QC Course in India, Hyderabad. sanjaryacademy is a well-known institute. We have offer professional Engineering Course like Piping Design Course, QA / QC Course,document Controller course,pressure Vessel Design Course, Welding Inspector Course, Quality Management Course, #Safety officer course.
QA / QC Course
QA / QC Course in india
QA / QC Course in hyderabad
very nice post...
ReplyDeleteinternship report on python
free internship in chennai for ece students
free internship for bca
internship for computer science engineering students in india
internships in hyderabad for cse students 2018
electrical companies in hyderabad for internship
internships in chennai for cse students 2019
internships for ece students
inplant training in tcs chennai
internship at chennai
very nice post.........
ReplyDeleter programming training in chennai
internship in bangalore for ece students
inplant training for mechanical engineering students
summer internships in hyderabad for cse students 2019
final year project ideas for information technology
bba internship certificate
internship in bangalore for ece
internship for cse students in hyderabad
summer training for ece students after second year
robotics courses in chennai
Nice Infromation....
ReplyDeleteinternship in chennai for ece students with stipend
internship for mechanical engineering students in chennai
inplant training in chennai
free internship in pune for computer engineering students
internship in chennai for mca
iot internships
internships for cse students in hyderabad
implant training in chennai
internship for aeronautical engineering students in bangalore
inplant training certificate
ReplyDeleteit is best blogs for you...!!!
paid internships in pune for computer science students
machine learning training in chennai
data science internship in chennai
dot net training in chennai
kaashiv infotech chennai
internship for aeronautical engineering students in india
internship in automobile industry
big data internship in chennai
machine learning internship in chennai
internship in chennai for it students
ReplyDeleteNice post...
3d-modeler-resume-samples
3d modeler resume samples
accounting-assistant-resume-sample
accounting-clerk-resume-sample
accounting-manager-resume-samples
account-manager-resume-examples
accounts-payable-resume-sample
admin-manager-resume-samples
advocate-resume-sample
advocate-resume-sample
nice post.......
ReplyDeleteapache solr resume sample
apache spark sample resume
application developer resume samples
application support engineer resume sample
asp dotnet mvc developer resume
asp net core developer resume
asp net developer resume samples
assistant accountant cv sample
assistant accountant resume
assistant accountant resume sample
branch-operations-manager-resume-samples
ReplyDeletebusiness-executive-resume-samples
business-owner-resume-samples
business-to-business-sales-resume-sample-sales-resumes
cad-design-engineer-resume-samples
call-centre-jobs-resume-sample
ca-resume-samples-chartered-accountant-resume-format
cassandra-database-administrator-resume
category/accountant-resume
category/admin-resume
nice....
ReplyDeletecategory/advocate-resume
category/agriculture-forestry-fishing
category/android-developer-resume
category/assistant-professor-resume
category/chartered-accountant-resume
category/database-resume
category/design-engineer-resume
category/developer-resume
category/engineer-resume
category/entrepreneur-and-financial-services-resume
good..nice..
ReplyDeleteassistant-director-resume-format
assistant-director-resume-sample
assistant-professor-resume-sample
back-office-executive-resume-samples
bank-branch-manager-resume-samples
basketball-coach-resume-sample-coach-resumes
bca-fresher-resume-sample
best-general-manager-resume-example
bpo-resume-freshers-sample
bpo-resume-samples-for-freshers
good ....nice...
ReplyDeleteresume/category/software-testing-resume
resume/category/sslc-resume
resume/category/storekeeper-resume
resume/category/stylist-resume
resume/category/teachers-resume
resume/category/technical-architect-resume
resume/category/web-developer-resume
cics-system-programmer-resume-example
resume/cisco-network-engineer-resume
resume/cisco-network-engineer-resume-sample
good.....nice..
ReplyDeletecategory/maintenance-resume
category/manager-resume
category/mechanical-engineering-resume
category/network-engineer-resume
category/officer-resume
category/operations-resume
category/process-associate-resume
category/quality-control-resumes
category/software-engineer-resume
good... nice... very useful..
ReplyDeleteassistant-director-resume-format
director-resume-sample
assistant-professor-resume-sample
back-office-executive-resume-samples
bank-branch-manager-resume-samples
basketball-coach-resume-sample-coach-resumes
bca-fresher-resume-sample
best-general-manager-resume-example
bpo-resume-freshers-sample
bpo-resume-samples-for-freshers
it is best blogs ....
ReplyDeletecivil-engineer-resume-format
client-service-executive-resume-sample
cognos-developer-resume-samples
college-lecturer-resume
college-lecturer-resume-sample
commercial-assistant-resume-sample
compliance-officer-resume-samples
computer-teacher-resume-format
computer-teacher-resume-sample
cordova-developer-resume-sample
ReplyDeletefilm-director-resume
finance-and-accounting-manager-resume-samples
finance-director-resume-examples
fire-safety-officer-resume-sample
fleet-maintenance-manager-resume-samples
format-for-resume-writing
fresher-computer-engineers-resume-sample
fresher-hr-resume-sample
fresher-hr-resume-sample-2
fresher-lecturer-resume
useful information..nice..
ReplyDeletedevops-engineer-resume-samples
digital-marketing-resume-samples
digital-marketing-resume-samples
electronics-engineer-resume-sample
engineering-lab-technician-resume-samples
english-teacher-cv-sample
english-teacher-resume-example
english-teacher-resume-sample
excel-expert-resume-sample
executive-secretary-resume-samples
good .........very useful
ReplyDeletefresher-marketing-resume-sample
front-end-developer-resume-sample
full-stack-developer-resume-samples
fund-accountant-resume-samples
general-ledger-accountant-resume-sample
government-jobs-resume
hadoop-developer-sample-resume
hadoop-developer-sample-resume
hardware-and-networking-resume-samples
hardware-engineer-resume-sample
Thanks for sharing such a wonderful content.
ReplyDeleteWe are the best waterproofing services in Hyderabad.We are providing all kinds of leakage services which includes bathroom,roof,wash area,water tank,wall cracks,kitchen leakage services in Hyderabad. With trust and honest, we solve the issue as quick as possible.We serve you better compared to others.
Best waterproofing services in hyderabad
bathroom leakage services in hyderabad
roof leakage services in hyderabad
water tank leakage services in hyderabad
kitchen leakage services in hyderabad
Hyderabad waterproofing services
I have recently found an excellent Salesforce Training in India whose faculty is exceptional and you can also try this Salesforce Training and Certification in Jaipur whose syllabus is state of art. Here at Salesforce Training in Mumbai instructors are perfect to teach salesforce crm. My advice for you is to join demo at Salesforce training in Pune | Course Cost and in weekends try this best Salesforce Training in Noida | Course Cost who is providing great teaching services on Salesforce Training in Delhi and Fee Details.
ReplyDelete