>  기사  >  백엔드 개발  >  php生成uuid与php图片上传微秒命名文件名

php生成uuid与php图片上传微秒命名文件名

WBOY
WBOY원래의
2016-07-25 08:52:161006검색
  1. function guid(){
  2. if (function_exists('com_create_guid')){
  3. return com_create_guid();
  4. }else{
  5. mt_srand((double)microtime()*10000);//optional for php 4.2.0 and up.
  6. $charid = strtoupper(md5(uniqid(rand(), true)));
  7. $hyphen = chr(45);// "-"
  8. $uuid = chr(123)// "{"
  9. .substr($charid, 0, 8).$hyphen
  10. .substr($charid, 8, 4).$hyphen
  11. .substr($charid,12, 4).$hyphen
  12. .substr($charid,16, 4).$hyphen
  13. .substr($charid,20,12)
  14. .chr(125);// "}"
  15. return $uuid;
  16. }
  17. }
复制代码


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.