1
2
3
|
$today = date("Y년 m월 d일");
echo "오늘은 " . $today . "입니다.";
|
cs |
1
2
3
|
$nextWeek = strtotime("+1 week");
echo "다음 주에는 " . date("Y년 m월 d일", $nextWeek) . "입니다.";
|
cs |
1
2
3
|
$currentTime = time();
echo "현재 시간의 타임스탬프: " . $currentTime;
|
cs |
1
2
3
|
$timestamp = mktime(12, 30, 0, 8, 3, 2023);
echo "지정한 날짜와 시간의 타임스탬프: " . $timestamp;
|
cs |
1
2
3
4
5
|
$pastDate = new DateTime('2023-07-01');
$currentDate = new DateTime();
$interval = date_diff($pastDate, $currentDate);
echo "과거로부터 " . $interval->format('%a') . "일이 지났습니다.";
|
cs |
게시판 긴 제목 원하는 길이로 자르기/ 자른후에 ... 붙이기/ 문자열자르기 PHP 코드 (0) | 2023.09.01 |
---|---|
웹스크래핑으로 채용정보 가져오는 PHP코드, 예제 ... 웹크롤링과 웹스크래핑의 차이 (0) | 2023.08.10 |
PHP 배열관련 함수 총정리... array_push() array_pop() array_shift() array_unshift() array_slice() array_merge() (0) | 2023.08.02 |
자주 쓰이는 PHP 함수 isset() strlen() explode() 활용법 알아보기 (0) | 2023.07.31 |
Youtube API 동영상 좋아요 수 불러오기 php 코드 (0) | 2023.06.12 |
댓글 영역