더 나은 프로그래머가 되자

지난 날짜 계산 본문

언어/PHP

지난 날짜 계산

greathuman 2017. 3. 30. 11:58

<?
	$today = date("Y-m-d",time()); //오늘 날짜
	$open_day = date("Y-m-d",strtotime("1997-11-10")); //기준 날짜
	$after_day = intval((strtotime($today)-strtotime($open_day)) / 86400); // 기준 날짜로부터 오늘까지 지난 날일.
?>
Comments