Contents
- UNIX
- Windows
- サーバ
- プログラミング言語
- データベース
- プロトコル
- サービス
- オープンソース
- 規格・技術
- アプリケーション
- PC
- DEVICE
- その他(未分類)
お問合せ: メールフォーム
<?php // format文字:t = 指定した月の日数(28 から 31)を返却。 echo '2007年02月の月末:'.date('Y/m/t', strtotime('2007-02')).PHP_EOL; echo '2008年02月の月末:'.date('Y/m/t', strtotime('2008-02')); ?>
▼結果
2007年02月の月末:2007/02/28 2008年02月の月末:2008/02/29