php 버전에 따른 난수 발생
페이지 정보
작성자 운영자쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 1,951회 작성일 21-07-05 15:05본문
$length= 32;
if(PHP_VERSION>=7){
$bytes= random_bytes($length);
}else{
$bytes= openssl_random_pseudo_bytes($length);
}
$string= bin2hex($bytes);
댓글목록
등록된 댓글이 없습니다.