如何使用PHP 随机调用几行文字,下面介绍给大家个简单方法
$file = "test.txt";$num = 2;$file_arr = file($file);$rand_keys = array_rand($file_arr, $num);foreach ($rand_keys as $rand_key) {echo $file_arr[$rand_key];}
$file = "test.txt";$num = 2;$file_arr = file($file);$rand_keys = array_rand($file_arr, $num);foreach ($rand_keys as $rand_key) {echo $file_arr[$rand_key];}
本文来源:PHP 随机调用txt 里面几行文字
本文地址:https://www.ys720.com/jiaocheng/3276.html
版权声明:本文采用[BY-NC-SA]协议进行授权,如无特别说明,转载请注明本文地址!