1
vote
Fastest way to determine image resolution and file type in PHP or Unix command line?
It's important to me that the file type is determined by looking at the file's headers and not simply the extension.
For that you can use 'file' unix command (o …
-3
votes
What’s the difference between SHA and MD5 (in PHP)?
Yes, there's a difference. MD5 was broken and is no longer secure. Use sha1 with a big hash size (for example: sha-512). Also use a different salt for each hash.
NEVER USE MD5 FOR PASSWORDS …
