PHP Random password using md5() and time()

Random password using md5() and time()

<?
$n = "8";
$pass = substr(md5(time()),0,$n);
echo $pass;
?>