For generating type 4 UUIDs I use this simple bit of code, it's not my work but I don't know where it came from:
#!/usr/bin/php
<?php
echo sprintf( '%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
mt_rand( 0, 0xffff ), mt_rand( 0, 0xffff ),
mt_rand( 0, 0xffff ),
mt_rand( 0, 0x0fff ) |...