我們今天要為大家詳細介紹的是有關
PHP生成唯一標識符代碼示例:
- < ?
- //生成唯一標識符
- //sha1()函數, "安全散列算法(SHA1)"
- function create_unique() {
- $data = $_SERVER['HTTP_USER_AGENT'] . $_SERVER['REMOTE_ADDR']
- .time() . rand();
- return sha1($data);
- //return md5(time().$data);
- //return $data;
- }
- ?>
PHP生成唯一標識符函數描述及例子
- < ?
- $newhash = create_unique();
- echo $newhash;
- ?>
-