반응형
/*
* 현재로부터 입력받은 날짜에 대한 남은 일 시 분 조회
*
*/
public static function func_get_left_time ($str_date) {
if (strlen($str_date)!=14) return '';
$date = new DateTime($str_date);
$currentdate = new DateTime();
$res = $date->diff($currentdate)->format(" %d일 %h시간 %i분 전");
$res= str_replace(" 0일","",$res);
$res= str_replace(" 0시간","",$res);
$res= str_replace(" 0분","",$res);
return $res;
}
반응형
'Program > Php' 카테고리의 다른 글
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 46137376 bytes) in C:\Apache24\htdocs\test\api\test.php on line 19 해결 방법 (0) | 2020.05.27 |
---|---|
mp4 mp3 등 오디오 비디오 파일 재생시간 추출하기 (0) | 2020.05.19 |
curl ssl 오류 (0) | 2018.03.12 |
PHP timezone 설정하기 오류시 (0) | 2017.11.30 |
(400) Unknown metric(s): ga:timeOnSite 워드프레스 google analytics 오류시 (0) | 2017.11.30 |