10-15 형식의 날짜 2019-10-15로 바꾸는법 좀 알려주세요.
본문
<td class="td_date"><?php echo $list[$i]['datetime2'] ?></td> 출력문입니다.
답변 4
$list[$i]['datetime2'] 을 $list[$i]['datetime'] 로 변경하세요
$list[$i]['datetime2']
대신
date("Y-m-d", strtotime($list[$i]['wr_datetime']))
감사합니다.
답변을 작성하시기 전에 로그인 해주세요.