PHPで時間差を計算する方法
説明:
int strtotime ( string $time [, int $now = time() ] )
英文形式の日付をUnixタイムスタンプに変換する
例:
$date=floor((strtotime($enddate)-strtotime($startdate))/86400);
Coding Changes the World
説明:
int strtotime ( string $time [, int $now = time() ] )
英文形式の日付をUnixタイムスタンプに変換する
例:
$date=floor((strtotime($enddate)-strtotime($startdate))/86400);