for の高度な使い方
for の高度な使い方
/*
** 必要な説明テキストを出力します
*/
print("
月曜日まであと何日ですか?
");
print("
");
for($currentDate = date("U"); //$currentDate の時刻形式を定義します
date("l", $currentDate) != "Monday"; //現在のシステム時刻が月曜日かどうかを判断します
$currentDate += (60 * 60 * 24))// 現在時刻 + 1 日
{
/*
** 時刻名を印刷します
*/
print("- " . date("l", $currentDate) 。」
");
}
print("
");
?>
http://www.bkjia.com/PHPjc/532320.htmlwww.bkjia.com本当http://www.bkjia.com/PHPjc/532320.html技術記事 for の高度な使用法 for の高度な使用法 /* ** 必要な説明テキストを出力します*/ print( 月曜日まであと何日ですか? ); // $currentDate 時刻グリッドを定義します。 ..