Created
February 15, 2016 02:45
-
-
Save imzhi/5d08010b25a5b9e28d9d to your computer and use it in GitHub Desktop.
生成uuid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // UUID百度百科<http://baike.baidu.com/view/1052579.htm> | |
| // 8-4-4-4-12 | |
| function create_uuid() | |
| { | |
| $str = md5(uniqid('', true)); | |
| return preg_replace('/(\w{8})(\w{4})(\w{4})(\w{4})(\w{12})/', '$1-$2-$3-$4-$5', $str); | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
直观方法: