php에서 uuid를 생성하는 방법과 uuid를 저장하는 방법입니다.
코드는 다음과 같습니다.
function guid(){ if (function_exists('com_create_guid')){ return com_create_guid(); }else{ mt_srand((double)microtime()*10000);//optional for php 4.2.0 and up. $charid = strtoupper(md5(uniqid(rand(), true))); $hyphen = chr(45);// "-" $uuid = chr(123)// "{" .substr($charid, 0, 8).$hyphen .substr($charid, 8, 4).$hyphen .substr($charid,12, 4).$hyphen .substr($charid,16, 4).$hyphen .substr($charid,20,12) .chr(125);// "}" return $uuid; } }
위 내용은 PHP에서 uuid를 생성하고 저장하는 방법에 대한 내용이며, 더 많은 관련 내용은 PHP 중국어 홈페이지(m.sbmmt.com)를 참고하시기 바랍니다. )!