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

for的高级运用

WBOY
WBOYOriginal
2016-06-21 09:02:19975browse

 




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");
    ?>

  •  



    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