0

I discovered that when I use php md5_file function to get the md5 checksum of the image, the checksum is different everytime.

Is it the gif image or is the md5_file() function that is dynamic?

dynamic
  • 46,985
  • 55
  • 154
  • 231
jk jk
  • 1,027
  • 2
  • 13
  • 28

1 Answers1

0

Unless the file contents change this is impossible

md5_file("path/file"); 

If file stays the same the output will be the same hash every time

dynamic
  • 46,985
  • 55
  • 154
  • 231