首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

随机读取TXT内容的有关问题!

2013-02-03 
随机读取TXT内容的问题!!$filefile(webyuan.txt)$file2file(lk.txt)$maxcount($file)-1$max2co

随机读取TXT内容的问题!!
$file=file('webyuan.txt');
$file2=file('lk.txt');
$max=count($file)-1;
$max2=count($file2)-1;
for($i=0;$i<5;$i++){
  $index=mt_rand(0,$max);
  $index2=mt_rand(0,$max2);
$temp = trim($file["$index"]);
$temp2 = trim($file2["$index2"]);
echo $temp2;
}

这个可以随机输出5个关键词

for{}括号外
输出$temp2就只能得到一个关键词了,
请问如何才能在在括号外也可以随机输出5个关键词
[解决办法]
for($i=0;$i<5;$i++){
  $index=mt_rand(0,$max);
  $index2=mt_rand(0,$max2);
$temp = trim($file["$index"]);
$temp2 .= trim($file2["$index2"]);
}
echo $temp2;

热点排行