PHP教程.经验技巧_PHP

WBOY
Release: 2016-06-01 12:40:55
Original
863 people have browsed it

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


 

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!