getmicrotime()에 관해 알고싶어요 !!
본문
getmicrotime()에 관해 알고싶어요
정확히 어떤함수인지 알려주세요 !!+_+
답변 1
getmicrotime()은 사용자정의 함수입니다.
예를들면
function getmicrotime() {
$microtimestmp = split(" ",microtime());
return $microtimestmp[0] + $microtimestmp[1];
}
이런 식으로 쓰여집니다.
여기서 microtime()이 함수이고여 어떤 형태인지를 자세히 모르겠지만..
시간을 구하는 함수이겠죠?
그럼 이만..
예를들면
function getmicrotime() {
$microtimestmp = split(" ",microtime());
return $microtimestmp[0] + $microtimestmp[1];
}
이런 식으로 쓰여집니다.
여기서 microtime()이 함수이고여 어떤 형태인지를 자세히 모르겠지만..
시간을 구하는 함수이겠죠?
그럼 이만..
답변을 작성하시기 전에 로그인 해주세요.