유니큐 문자열 생성 함수를 공유해드립니다.
PHP로 중복없는 유일한 문자열을 생성하는 제가 애용하는 함수를 공유해드립니다.
function v4 ($trim = true)
{
// Windows
if (function_exists('com_create_guid') === true) {
if ($trim === true)
return trim(com_create_guid(), '{}');
else
return com_create_guid();
}
// OSX/Linux
if (function_exists('openssl_random_pseudo_bytes') === true) {
$data = openssl_random_pseudo_bytes(16);
$data[6] = chr(ord($data[6]) & 0x0f | 0x40); // set version to 0100
$data[8] = chr(ord($data[8]) & 0x3f | 0x80); // set bits 6-7 to 10
return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
}
// Fallback (PHP 4.2+)
mt_srand((double)microtime() * 10000);
$charid = strtolower(md5(uniqid(rand(), true)));
$hyphen = chr(45); // "-"
$lbrace = $trim ? "" : chr(123); // "{"
$rbrace = $trim ? "" : chr(125); // "}"
$guidv4 = $lbrace.
substr($charid, 0, 8).$hyphen.
substr($charid, 8, 4).$hyphen.
substr($charid, 12, 4).$hyphen.
substr($charid, 16, 4).$hyphen.
substr($charid, 20, 12).
$rbrace;
return $guidv4;
}
이용해주시는 분들께 감사를 드립니다.
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 5336 | 1년 전 | 952 | |||
| 5335 | 1년 전 | 974 | |||
| 5334 | 1년 전 | 885 | |||
| 5333 | 1년 전 | 714 | |||
| 5332 |
바다클라우드
|
1년 전 | 3644 | ||
| 5331 |
뽕엄능브라
|
1년 전 | 1670 | ||
| 5330 | 1년 전 | 1328 | |||
| 5329 |
|
1년 전 | 2650 | ||
| 5328 | 1년 전 | 2453 | |||
| 5327 | 1년 전 | 3644 | |||
| 5326 | 1년 전 | 1547 | |||
| 5325 | JavaScript |
|
1년 전 | 687 | |
| 5324 | OS | 1년 전 | 752 | ||
| 5323 | PHP |
|
1년 전 | 892 | |
| 5322 | PHP |
|
1년 전 | 789 | |
| 5321 | PHP |
|
1년 전 | 649 | |
| 5320 | PHP |
|
1년 전 | 753 | |
| 5319 | PHP |
techstar
|
1년 전 | 799 | |
| 5318 | JavaScript |
|
1년 전 | 666 | |
| 5317 | PHP |
|
1년 전 | 611 | |
| 5316 | PHP |
|
1년 전 | 574 | |
| 5315 | PHP |
|
1년 전 | 685 | |
| 5314 | PHP |
|
1년 전 | 665 | |
| 5313 | PHP |
techstar
|
1년 전 | 764 | |
| 5312 | 정규표현식 |
|
1년 전 | 642 | |
| 5311 | JavaScript |
|
1년 전 | 703 | |
| 5310 | PHP |
|
1년 전 | 2120 | |
| 5309 | PHP |
techstar
|
1년 전 | 1606 | |
| 5308 | PHP |
techstar
|
1년 전 | 673 | |
| 5307 | node.js |
swallow
|
1년 전 | 1427 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기