Bhargav D Dave
Bhargav D Dave

Reputation: 11

How to generate fixed length hash based on current date and time in Php?

I want to generate a fixed-length (say 10 characters) hash based on current date & time. This hash will be append to names of the uploaded files from my users. How can I do that in Php?

Upvotes: 1

Views: 1736

Answers (1)

fedeisas
fedeisas

Reputation: 2023

The most simple way I can think of:

$hash = md5(time());

Upvotes: 3

Related Questions