<?php $str = "12345678901234567890"; $cad = ""; for($i=0;$i<9;$i++) { $cad .= substr($str,rand(0,10),1); } echo $cad; ?>