【www.gdgbn.com--php函数】

shuffle数组值随便排序函数
*/

$typename=20;
$rtitle="tt";
for( $i=0;$i<=20;$i++)
{
 $rtitle_rand = array($typename,$rtitle,$typename);
 shuffle($rtitle_rand);//数组进行随机排序
 echo $rtitle_rand["0"]."
";
}

本文来源:http://www.gdgbn.com/jiaocheng/29247/