Home  >  Article  >  Backend Development  >  PHP教程.经验技巧_PHP

PHP教程.经验技巧_PHP

WBOY
WBOYOriginal
2016-06-01 12:40:55864browse

for的高级运用



for的高级运用



/*
** 打印必要的说明文字
*/
print("距离星期一还有几天?\n");
print("
    \n");
    for($currentDate = date("U"); //定义$currentDate时间格式
    date("l", $currentDate) != "Monday"; //判断是不是当前系统时间是Monday
    $currentDate += (60 * 60 * 24))//当前时间加上1天
    {
    /*
    ** 打印时间名称
    */
    print("
  1. " . 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