<?php $FourDigitRandomNumber = mt_rand(1111,9999); echo $FourDigitRandomNumber; ?>
$digits = 3; echo rand(pow(10, $digits-1), pow(10, $digits)-1);