是否有file_get_contents的替代方案?

时间:2014-04-23 05:06:07

标签: php curl file-get-contents

我试过这个,但只从文件comments.txt

中获取一个字符

我想要逐行随机行。file_get_contents也禁用了urlencode

$f_contents = file_get_contents("comments.txt");
$line = $f_contents[array_rand($f_contents)];
$messages = $line;
$messages = urlencode($messages);

1 个答案:

答案 0 :(得分:2)

你可以简化它......

<?php
$arr = file('comments.txt',FILE_IGNORE_NEW_LINES);
shuffle($arr);
foreach($arr as $v)
{
 echo $v."<br>";
}

上面的代码逐个打印文本文件中的随机行。