php生成uuid与php图片上传微秒命名文件名 程序员文章站 2024-01-31 11:36:46 ... 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图片上传微秒命名文件名 上一篇: mysql ExecuteReader问题_MySQL 下一篇: ajax 二维数组 推荐阅读 php生成uuid与php图片上传微秒命名文件名 php图片上传类同时可生成缩略图与加水印 PHP图片上传与重命名六种方法总结 php生成uuid与php图片上传微秒命名文件名 php图片上传类同时可生成缩略图与加水印_PHP教程 php上传文件与图片重命名方法总结 php上传文件与图片重命名方法总结 php 图片上传代码(具有生成缩略图与增加水印功能)_PHP教程 php图片上传时用微秒创建文件名 php 图片上传代码(具有生成缩略图与增加水印功能)