输入banner图图片脚本导航/分类

shuffle数组值随便排序函数_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'].'
';
}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445359.htmlTechArticleshuffle数组值随便排序函数 */ $typename=20; $rtitle=tt; for( $i=0;$i=20;$i++) { $rtitle_rand = array($typename,$rtitle,$typename); shuffle($rtitle_rand);//数组进行随机排...