PHP date function example study notes

WBOY
Release: 2016-08-08 09:27:03
Original
919 people have browsed it
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <?php
        // put your code here UNIX时间戳和获取当前的时间
        $time = strtotime("2011-11-11 11:11:11");
        $last = $time + (30*24*60*60);
        echo date("Y-m-d H:i:s", $last);
        echo "<br/>";
        echo print_r(getdate());
        echo "<br/>";
        echo date("Y-m-d H:i:s");
        echo "<br/>";
        date_default_timezone_set("ETC/GMT-8");
        echo date("Y-m-d H:i:s");
        ?>
    </body>
</html>
Copy after login

The above introduces the PHP date function example study notes, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template