"함수 hexgen()"의 두 판 사이의 차이

3번째 줄: 3번째 줄:
==PHP==
==PHP==
[[category: PHP]]
[[category: PHP]]
<source lang='php'>
function getRandomHex($len) {
$result = '';
for($i=0; $i<$len; $i++) $result .= sprintf('%01x', mt_rand(0, 0xf));
return $result;
}
var_dump( getRandomHex(7) );
# string(7) "b8a8bac"
</source>
<source lang='php'>
<source lang='php'>
function getRandomHex($len) {
function getRandomHex($len) {

2016년 12월 5일 (월) 16:16 판


1 PHP

function getRandomHex($len) {
	$result = '';
	for($i=0; $i<$len; $i++) $result .= sprintf('%01x', mt_rand(0, 0xf));
	return $result;
}
var_dump( getRandomHex(7) );
# string(7) "b8a8bac"
function getRandomHex($len) {
  return substr((bin2hex(openssl_random_pseudo_bytes($len/2+1))),0,$len);
}
var_dump( getRandomHex(7) );
# string(7) "cd4d19d"

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}