search
Homephp教程PHP源码PHP displays Sunday to Saturday adapted from Tang Guowei's code

Tang Guowei shared the code to display Monday to Sunday. Since no CSS settings are provided, the running output is inconsistent with the screenshot. It can be seen that the CSS accompanying PHP is equally important! (See comments: http://www.oschina.net/code/snippet_2318591_56527)
First explain the CSS settings here:
box{
float:left; ----- If the page still has horizontal space, it is required to be displayed The unit boxes of each day's data are on the same line
margin-right:15px; ---- Leave a gap (interval) of 15 pixels (px) on the right side of each unit box
font-family: "毷体"; -- -- The Chinese characters in the box are in italics
}
#Today{
color:#F00; ----Display the data box for the day, and display the data in red
border-bottom:solid #00f 3px; ------- The bottom border is represented by a blue, 3 pixel (px) thick solid line
}
Main changes:
1. Change the display order to: always from Sunday to Saturday

2. First set the local time zone: The time zone is Asia Shanghai, that is, China local time, this is a must, otherwise, due to possible time differences, sometimes the date will appear one day later or earlier

<html>
<header>
<meta charset="utf-8">
<style>
box{  
float:left;
margin-right:15px;
font-family:"楷体";
}
#Today{ 
    color:#F00;
    border-bottom:solid #00f 3px;
}
</style>
</header>
<body>
<?php
//设置好地方时区: 时区为亚洲上海,即中国地方时,这是必须的!
date_default_timezone_set(&#39;Asia/shanghai&#39;);
$week = date(&#39;w&#39;); //w-数字型的星期几,如:"0"(星期日)至"6"(星期六)
//创建中文星期几的数组
$week_cn=array(&#39;周日&#39;,&#39;周一&#39;,&#39;周二&#39;,&#39;周三&#39;,&#39;周四&#39;,&#39;周五&#39;,&#39;周六&#39;);
//调用方法 time() 获取当前地方时间的 Unix 时间戳(单位:秒)
//星期日的时间为 time()-$week*86400, 它是 循环体变量 $time 的初始值 
//每次循环结束,更新变量时,$time 增加一天的时间:86400秒
for($i=0,$time=time()-$week*86400; $i<7;$i++, $time+=86400){
    if ($i==$week) 
        echo &#39;<box id="Today"&#39;;
        else
        echo &#39;<box&#39;; 
    echo &#39;>&#39;.$week_cn[$i]; //输出中文的星期几
//输出对应的月份和号(日)
    echo &#39;<br>&#39;.date(&#39;m-d&#39;,$time).&#39;</box>&#39;; 
    }
?>
</body>
</html>


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

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 Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment