search
HomeBackend DevelopmentPHP TutorialPHP simple calendar program code_PHP tutorial

PHP simple calendar program code_PHP tutorial

Jul 20, 2016 am 11:11 AM
datephpcodefunctionFunctiondeal withsupplycalendardateNowofprogramSimpleneed

PHP provides the date() function, which provides rich date processing functions. There are two data that need to be obtained now. The first is the total number of days in the month; the second is the day of the week where the first day of the month falls. The numbers represent 0 (indicating Sunday) to 6 (indicating Saturday).

The above data can be easily obtained through the date() function

The code is as follows Copy code
 代码如下 复制代码

$month = $_GET['m']?$_GET['m']:date(‘n’);
$year = $_GET['y']?$_GET['y']:date(‘Y’);

$start_week = date(‘w’,mktime(0,0,0,$month,1,$year));
$day_num = date(‘t’,mktime(0,0,0,$month,1,$year));
$end = false;
?>






for($i = 0; $i{
echo “”;
}

$j=1;

while($j{
echo “

”;
$week = ($start_week+$j-1)%7;

if($week ==6){
echo “nt

n”;
if($j != $day_num)
echo “tntt”;
else $end = true;
}
$j++;
}
while($week%7 != 6)
{
echo “”;
$week++;
}
if(!$end)
echo “n”;
?>

星期日 星期一 星期二 星期三 星期四 星期五 星期六
$j
$month = $_GET['m']?$_GET[' m']:date('n');
$year = $_GET['y']?$_GET['y']:date('Y');$start_week = date('w',mktime(0,0,0,$month,1,$year));
$day_num = date('t',mktime(0,0,0,$month,1, $year));
$end = false;
?>


> ;


for($i = 0; $i< ;$start_week; $i++)
{
echo “”;
}$j=1;while($j{
echo “”;
$week = ($start_week+$j-1)%7 ;if($week ==6){
echo “ntn”;
if($j != $day_num)
echo “t< ;tr>ntt”;
else $end = true;
}
$j++;
}
while($week%7 != 6)
{
echo “”;
$week++;
}
if(!$end)
echo “n tr>”;
?>
SundayMonday Tuesday Wednesday Thursday Friday td> Saturday
$j

Advanced class

';
foreach($this->weeks as $title)
>                                                                                                                   echo ' $starDay = date('w', $firstDay);
$days = date('t', $firstDay);

        echo '

';
        for ($i=0; $i            echo '';
        }
       
        for ($j=1; $j            $i++;
            if ($j == date('d')) {
                echo '';
            } else {
                echo '';
            }
            if ($i % 7 == 0) {
                echo '';
            }
        }
       
        echo '';
    }
   
    private function showChangeDate()
    {
       
        $url = basename($_SERVER['PHP_SELF']);
       
        echo '';
 echo '';
 echo '';
        echo '';       
 echo '';
 echo '';       
        echo '';
    }
   
    private function preYearUrl($year,$month)
    {
        $year = ($this->year        
        return 'year='.$year.'&month='.$month;
    }
   
    private function nextYearUrl($year,$month)
    {
        $year = ($year >= 2038)? 2038 : $year + 1;
       
        return 'year='.$year.'&month='.$month;
    }
   
    private function preMonthUrl($year,$month)
    {
        if ($month == 1) {
            $month = 12;
            $year = ($year         } else {
            $month--;
        }       
       
        return 'year='.$year.'&month='.$month;
    }
   
    private function nextMonthUrl($year,$month)
    {
        if ($month == 12) {
            $month = 1;
            $year = ($year >= 2038) ? 2038 : $year + 1;
        }else{
            $month++;
        }
        return 'year='.$year.'&month='.$month;
    }
   
}
The code is as follows Copy code

class Calendar
{
private $year;
private $month;
private $weeks = array('日','一','二','三','四',' Five','six');

function __construct($options = array()) {
$this->year = date('Y');
$this-> month = date ('m'); ($key, $vars)) {
                 $this->$key = $value;                                                                 🎜> echo '

';
$this->showChangeDate();
$this->showWeeks();
$this->showDays( $this->year,$this->month);
            echo '
'; '
 '.$j.''.$j.'
'.''.'
';
       
        echo '';
        echo '';       
        echo '
'.'>'.''.'>>'.'

调用方法

 代码如下
 代码如下 复制代码

$params = array();
if (isset($_GET['year']) && isset($_GET['month'])) {
    $params = array(
        'year' => $_GET['year'],
        'month' => $_GET['month'],
    );
}
$params['url']  = 'demo.php';
require_once 'calendar.class.php';
?>


   


        日历demo
       
       
   
   
       

                            $cal = new Calendar($params);
                $cal->display();
            ?>   
       

   
复制代码
$params = array();
if (isset($_GET['year']) && isset($_GET['month'])) {
    $params = array(
        'year' => $_GET['year'],
        'month' => $_GET['month'],
    );
}
$params['url']  = 'demo.php';
require_once 'calendar.class.php';
?>

   
        日历demo
       
       
   
   
       

                            $cal = new Calendar($params);
                $cal->display();
            ?>   
       

   

http://www.bkjia.com/PHPjc/444655.htmlwww.bkjia.com
true
http://www.bkjia.com/PHPjc/444655.html
TechArticlePHP提供了date()函数,该函数提供了丰富的日期处理功能。现在需要获得的数据有两个,第一个是当月的总天数;第二个是该月的第一天所在...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Performance Tuning for High Traffic WebsitesPHP Performance Tuning for High Traffic WebsitesMay 14, 2025 am 12:13 AM

ThesecrettokeepingaPHP-poweredwebsiterunningsmoothlyunderheavyloadinvolvesseveralkeystrategies:1)ImplementopcodecachingwithOPcachetoreducescriptexecutiontime,2)UsedatabasequerycachingwithRedistolessendatabaseload,3)LeverageCDNslikeCloudflareforservin

Dependency Injection in PHP: Code Examples for BeginnersDependency Injection in PHP: Code Examples for BeginnersMay 14, 2025 am 12:08 AM

You should care about DependencyInjection(DI) because it makes your code clearer and easier to maintain. 1) DI makes it more modular by decoupling classes, 2) improves the convenience of testing and code flexibility, 3) Use DI containers to manage complex dependencies, but pay attention to performance impact and circular dependencies, 4) The best practice is to rely on abstract interfaces to achieve loose coupling.

PHP Performance: is it possible to optimize the application?PHP Performance: is it possible to optimize the application?May 14, 2025 am 12:04 AM

Yes,optimizingaPHPapplicationispossibleandessential.1)ImplementcachingusingAPCutoreducedatabaseload.2)Optimizedatabaseswithindexing,efficientqueries,andconnectionpooling.3)Enhancecodewithbuilt-infunctions,avoidingglobalvariables,andusingopcodecaching

PHP Performance Optimization: The Ultimate GuidePHP Performance Optimization: The Ultimate GuideMay 14, 2025 am 12:02 AM

ThekeystrategiestosignificantlyboostPHPapplicationperformanceare:1)UseopcodecachinglikeOPcachetoreduceexecutiontime,2)Optimizedatabaseinteractionswithpreparedstatementsandproperindexing,3)ConfigurewebserverslikeNginxwithPHP-FPMforbetterperformance,4)

PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)