Home > php教程 > php手册 > for的高级运用

for的高级运用

WBOY
Release: 2016-06-21 09:02:19
Original
988 people have browsed it

 




for
的高级运用



/*
**
打印必要的说明文字
*/
print("
距离星期一还有几天?\n");
print("

    \n");
    for($currentDate = date("U"); //
定义$currentDate时间格式
date("l", $currentDate) != "Monday"; //
判断是不是当前系统时间是Monday
$currentDate += (60 * 60 * 24))//
当前时间加上1
{
/*
**
打印时间名称
*/
print("
  • " . date("l", $currentDate) . "\n");
    }

    print("\n");
    ?>

  •  



    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 Recommendations
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template