메뉴 건너뛰기

프로그램언어

조회 수 652 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

기존 time() 함수를 사용했을 경우

$timestamp = time();
echo 'timestamp : ' . $timestamp;

위와 같이 출력 했을 경우에는 10자리의 timestamp가 생성이 됩니다. 

즉 밀리세컨즈의 내용이 포함되지 않았습니다.

 

13자리 Timestamp 생성하기

list($microtime, $timestamp) = explode(' ',microtime()); 
$time = $timestamp . substr($microtime, 2, 3);

microtime() 함수를 이용해 밀리세컨드 내용까지 가져옵니다.

 

비교하기

<?php

echo "time() : " . time() . "<br><br>";
echo "microtime() : " . microtime(). "<br><br>";

list($microtime,$timestamp) = explode(' ',microtime());
$time = $timestamp . substr($microtime, 2, 3);

echo "작업 후 : " . $time;

 

위와 같이 작업 후 출력 결과는 아래와 같습니다.

 

 

 

 

이렇게 간단하게 13자리 timestamp를 가져올 수 있습니다.


  1. PEAR DB 관련 함수들

    Date2021.03.26 Views690
    Read More
  2. 파일을 변수에 담기(ob_start를 이용한 방법)

    Date2021.03.26 Views676
    Read More
  3. 13자리 timestamp 생성하기

    Date2020.09.28 Views652
    Read More
  4. PHP 버전이 낮아 imagerotate() 함수가 없을때 대신 사용하는 함수

    Date2019.12.31 Views644
    Read More
  5. while, for, foreach 속도 비교

    Date2021.03.26 Views623
    Read More
  6. 다중 파일을 zip으로 묶어받기

    Date2020.06.19 Views619
    Read More
  7. 파일 다운로드 함수(멀티 이어받기/속도제한)

    Date2020.06.19 Views618
    Read More
  8. 서브도메인 세션 공유

    Date2021.03.26 Views585
    Read More
  9. 알파벳 순서대로 출력하기 ord(), chr()

    Date2021.03.26 Views583
    Read More
  10. substr(), mb_substr(), iconv_substr()

    Date2021.03.26 Views564
    Read More
  11. csv파일 다루기. fputcsv(), fgetcsv()

    Date2021.03.26 Views558
    Read More
  12. Javascript 두 좌표 사이의 거리 구하기, 두 좌표의 중앙 좌표 구하기

    Date2020.09.23 Views535
    Read More
  13. 네이버 지도 API를 이용한 주소를 좌표로 변환하기 (PHP)

    Date2020.09.22 Views495
    Read More
  14. CodeIgniter - DB오류체크, 디버깅 여부 설정

    Date2021.03.29 Views494
    Read More
  15. 사업자등록번호 유효성 체크

    Date2020.08.24 Views470
    Read More
  16. 배열 더하기 (+ 를 이용한 배열 합치기 )

    Date2021.03.26 Views451
    Read More
  17. 멀티 파일다운로드 꽁수로 구현하기

    Date2020.06.19 Views438
    Read More
  18. 주차 , 요일, 해당주의 시작일, 해당주의 종료일 date()

    Date2021.07.08 Views432
    Read More
  19. DAUM 지도 API 좌표→주소(주소->좌표) 변환

    Date2020.10.05 Views431
    Read More
  20. 경로 제외한 파일 이름만 선택하는 방법, Basename()

    Date2020.11.23 Views429
    Read More
Board Pagination Prev 1 ... 8 9 10 11 12 13 14 15 16 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved