srand()
and mt_srand()
are disabled on my host server. I want to select a few random items from an array, but the should be the same on a particular day. Seeding with the date works on my computer, but not on the host server. (Damn these disable-happy security paranoid people!)
An external generator would be good, but I can't seem to find any. I'm not doing cryptography, the most basic of randomness would do.
EDIT: Done. I found this simple version in a related question and adapted the code for PHP. Perfect!