Home  >  Article  >  Backend Development  >  PHP date function example study notes

PHP date function example study notes

WBOY
WBOYOriginal
2016-08-08 09:27:03881browse
<!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>

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.

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