用php写的简单的日历代码

时间:2021-07-05 07:47:00
【文件属性】:
文件名称:用php写的简单的日历代码
文件大小:4KB
文件格式:PHP
更新时间:2021-07-05 07:47:00
php 日历 //设置中国时区时间 if (function_exists('date_default_timezone_set')){ date_default_timezone_set('PRC'); } //格式化提交数据 function post_input($data){ $data = trim($data); $data = stripslashes($data); $data = htmlspecialchars($data); return $data; } //判断获取 $year = isset($_GET['y']) ? post_input($_GET['y']): date('Y'); //当前月份 $month = isset($_GET['m']) ? post_input($_GET['m']): date('m'); //当前日子 $day = isset($_GET['d']) ? post_input($_GET['d']): date('d'); //设置月份转化年份规则 if ($month > 12){ $month = 1; $year++; }elseif ($month < 1){ $month = 12; $year--; }

网友评论