
--------------------------------------------------
if (!function_exists('diy_rand_authors')) {
function diy_rand_authors($add_time, $count){
    $name = file("extend/author.txt");
    
    $t = date("H:i:s", $add_time); // 获取时间,精确到时分秒
    
    $t_seconds = strtotime($t); // 将时间转换为时间戳
    
    $authors = array();
    
    for ($i = 0; $i < $count; $i++) {
        $name_index = ($t_seconds + $i) % count($name); // 使用时间戳模除作者名字数组的长度
        $authors[] = trim($name[$name_index]); // 添加随机作者名字到数组中
    }
    
    return $authors; // 返回随机作者名字数组
	
	
	// 调用示例
$custom_count = 6; // 自定义调用的数量
$random_authors = diy_rand_author(time(), $custom_count);
// 输出随机的作者名字
foreach ($random_authors as $author) {
    echo $author;
    echo '<br>';
}
}
}
--------------------------------------------------
无法生成,页面。
请问是哪里问题?或者 有什么更好的方式,解决?