
MongoDBBSONTimestampInterface의 __toString() 메서드는 timestamp의 값을 ISO 8601 형식의 문자열로 변환합니다.
예를 들어, timestamp의 값이 1643723400인 경우, __toString() 메서드는 다음과 같은 문자열을 반환합니다.
"2022-02-01T10:30:00.000Z"
이 메서드는 timestamp의 값을 1970년 1월 1일 00:00:00 (UTC)부터 시작하는 초 단위로 변환한 후 ISO 8601 형식의 문자열로 변환합니다.
__toString() 메서드를 사용하는 예시 코드는 다음과 같습니다.
#hostingforum.kr
php
$timestamp = new MongoDBBSONTimestamp(1643723400);
echo $timestamp->__toString(); // "2022-02-01T10:30:00.000Z"
이 코드는 MongoDB\BSON\Timestamp 객체를 생성하고, __toString() 메서드를 호출하여 timestamp의 값을 ISO 8601 형식의 문자열로 변환합니다.
2025-04-01 20:10