Cocos2dx 아래, 헤더 파일
std::string uid = ""; uuid_t uu; int i; uuid_generate(uu); for (i = 0; i < 16; i ++) { char aa[10]=""; sprintf(aa, "%02X",uu[i]); uid+=aa; } return uid;
<?php function create_guid(){ $micortime = microtime(); list($a_dec,$a_sec) = explode(" ", $micortime); $dec_hex = dechex($a_dec*1000000); $sec_hex = dechex($a_sec); ensure_length($dec_hex, 5); ensure_length($sec_hex, 6); $guid = ""; $guid.=$dec_hex; $guid.=create_guid_section(3); $guid.='-'; $guid.=create_guid_section(4); $guid.='-'; $guid.=create_guid_section(4); $guid.='-'; $guid.=create_guid_section(4); $guid.='-'; $guid.=$sec_hex; $guid.=create_guid_section(6); return $guid; } function ensure_length(&$string,$length){ $strlen = strlen($string); if ($strlen<$length) { $string = str_pad($string, $length,"0"); } elseif ($strlen>$length){ $string = substr($string, 0,$length); } } function create_guid_section($characters){ $return = ""; for ($i = 0;$i < $characters;$i++){ $return.=dechex(mt_rand(0, 15)); } return $return; } ?>
위 내용을 포함하여 고유 장치 식별자를 얻는 방법을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.