30 日をタイムスタンプに変換する php メソッド: 1. php サンプル ファイルを作成します; 2. 「mktime(0,0,0,date('m'),1,date('Y ')」を渡します);mktime(23,59,59,date('m'),date('t'),date('Y'));" を使用して、今月の開始タイムスタンプと終了タイムスタンプを取得できます。
このチュートリアルの動作環境: Windows 7 システム、PHP バージョン 8.1、Dell G3 コンピューター。
PHP で 30 日をタイムスタンプに変換するにはどうすればよいですか?
最初に date() 関数の形式を説明します。
date('Y-m-d',timestamp); //输出年-月-日 date('Y-m-d H:i:s',timestamp); //输出年-月-日 时:分:秒
php は今日の日付を取得します
date("Y-m-d",strtotime("today")); //strtotime('today')输出今天的开始时间戳
または
date("Y-m-d",time()); //time()输出当前的秒时间戳
php は昨日の日付を取得します
date("Y-m-d",strtotime("-1 day")); 或 date("Y-m-d",strtotime("yesterday"));
php明日の日付を取得
date("Y-m-d",strtotime("+1 day")); 或 date("Y-m-d",strtotime("tomorrow "));
php7日後の日付を取得
date("Y-m-d",strtotime("+7 day"));
php30日後の日付を取得
date("Y-m-d",strtotime("+30 day"));
php1週間後の日付を取得
date("Y-m-d",strtotime("+1 week"));
php 1 か月後の日付を取得
date("Y-m-d",strtotime("+1 month"));
php 1 か月前の日付を取得
date("Y-m-d",strtotime("last month")); 或 date("Y-m-d",strtotime("-1 month"));
php 1 年後の日付を取得
date("Y-m-d",strtotime("+1 year"));
php 取得1 週間、2 日と 4 時間後の日付 5 分 2 秒後の時刻
date("Y-m-d H:i:s",strtotime("+1 week 2 days 4 hours 5 minute 2 seconds"));
php 次の木曜日の日付を取得します
date("Y-m-d",strtotime("next Thursday"));
php 先週の月曜日の日付を取得します
date("Y-m-d",strtotime("last Monday"));
php 今日の開始タイムスタンプと終了タイムスタンプを取得します
mktime(0,0,0,date('m'),date('d'),date('Y')); mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1;
php 昨日の開始タイムスタンプと終了タイムスタンプを取得します
mktime(0,0,0,date('m'),date('d')-1,date('Y')); mktime(0,0,0,date('m'),date('d'),date('Y'))-1;
php 先週の開始タイムスタンプと終了タイムスタンプを取得します
mktime(0,0,0,date('m'),date('d')-date('w')+1-7,date('Y')); mktime(23,59,59,date('m'),date('d')-date('w')+7-7,date('Y'));
php 今月の開始と終了のタイムスタンプを取得します
mktime(0,0,0,date('m'),1,date('Y')); mktime(23,59,59,date('m'),date('t'),date('Y'));
推奨される学習: " PHP ビデオ チュートリアル >>
以上がPHPで30日をタイムスタンプに変換する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。