网站地图    收藏   

主页 > php专栏 > php函数大全 >

php 文件中随机取出一条数据 - php函数

来源:自学PHP网    时间:2014-11-25 00:27 作者: 阅读:

[导读] ?php 第一种方法:$line=getrandline1( 39;test txt 39;);functiongetrandline1($filename){$linenum=0;$fh=fopen($filename, 39;r 3...

php 文件中随机取出一条数据

  1. <?php 
  2. //第一种方法: 
  3. $line = getrandline1('test.txt'); 
  4. function getrandline1($filename
  5.  $linenum = 0; 
  6.  $fh = fopen($filename'r'); 
  7.  while(!feof($fh)) 
  8.  { 
  9.   if($rowcontents = fgets($fh)) 
  10.   { 
  11.    $linenum++; 
  12.    $contens[] = $rowcontents
  13.   } 
  14.  } 
  15.  $randline = mt_rand(0, $linenum - 1); 
  16.  $line = $contens[$randline]; 
  17.  fclose($fh); 
  18.  return $line
  19.   
  20. //第二种方法: 
  21. $line = getrandline2('test.txt'); 
  22. function getrandline2($filename
  23.  $contents = file('test.txt'); 
  24.  $linenum = count($contents); 
  25.  $randline = mt_rand(0, $linenum - 1); 
  26.  $line = $contents[$randline]; 
  27.  return $line
  28.   
  29. //第三种方法: 
  30. $line = getrandline3('test.txt'); 
  31. function getrandline3($filename
  32.  $contents = file('test.txt'); 
  33.  shuffle($contents); 
  34.  return $contents[0]; 
  35.   
  36. //第四种方法: 
  37. $line = getrandline4('test.txt'); 
  38. function getrandline4($filename
  39.  $linenum = 0; 
  40.  $fh = fopen($filename'r'); 
  41.  while(!feof($fh)) 
  42.  { 
  43.   if($linecontents = fgets($fh)) 
  44.   { 
  45.    $linenum++; 
  46.                         $randint = (mt_rand(1, 1000000 * $linenum) - 1)/1000000); 
  47.    if($randint < 1) 
  48.    { 
  49.     $line = $linecontents
  50.    } 
  51.   } 
  52.  } 
  53.  fclose($fh); 
  54.  return $line
  55. ?> 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论