MySQL 데이터베이스에서 시간 값을 나타내는 데 사용되는 Unix 타임스탬프는 특정 애플리케이션에 대한 시간 구성 요소만 추출해야 하는 경우도 있습니다. . Unix 타임스탬프를 JavaScript의 시간으로 변환하려면 다음 단계를 따르세요.
JavaScript 날짜 개체 만들기:
let unix_timestamp = 1549312452; let date = new Date(unix_timestamp * 1000); // Convert to milliseconds
추출 시간 구성 요소:
// Hours: const hours = date.getHours(); // Minutes: const minutes = "0" + date.getMinutes(); // Pad zero if necessary // Seconds: const seconds = "0" + date.getSeconds(); // Pad zero if necessary
시간 형식:
const formattedTime = hours + ':' + minutes.substr(-2) + ':' + seconds.substr(-2);
const unix_timestamp = 1549312452; // Create a JavaScript Date object based on the timestamp // multiplied by 1000 so that the argument is in milliseconds, not seconds const date = new Date(unix_timestamp * 1000); // Hours part from the timestamp const hours = date.getHours(); // Minutes part from the timestamp const minutes = "0" + date.getMinutes(); // Seconds part from the timestamp const seconds = "0" + date.getSeconds(); // Will display time in 10:30:23 format const formattedTime = hours + ':' + minutes.substr(-2) + ':' + seconds.substr(-2); console.log(formattedTime);
위 내용은 JavaScript의 Unix 타임스탬프에서 시간을 추출하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!