Develop/PHP 썸네일형 리스트형 [PHP] 특정 날에서 몇일뒤 1 $mydate = date("Ymd", strtotime("+1 day", strtotime($temp_date))); 2 //$temp_date = 20110101 3 4 // After one months 5 $mydate = date("Ymd", strtotime("+1 months", strtotime($temp_date))); 6 //$temp_date = 20110101 더보기 [PHP] 주어진 날짜 형식 변환하기 list($year, $month, $day) = split("-", $date);$date = date('M d, Y', mktime(0, 0, 0, $month, $day, $year)); 더보기 [PHP] string->array || array->string -string->arrayarray explode ( string $delimiter , string $string [, int $limit ]) - array->stringstring implode (string $glue , array $pieces ) 더보기 이전 1 ··· 5 6 7 8 9 10 다음