--------------------------------------------------
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); // 獲取時(shí)間,精確到時(shí)分秒
$t_seconds = strtotime($t); // 將時(shí)間轉(zhuǎn)換為時(shí)間戳
$authors = array();
for ($i = 0; $i < $count; $i++) {
$name_index = ($t_seconds + $i) % count($name); // 使用時(shí)間戳模除作者名字?jǐn)?shù)組的長度
$authors[] = trim($name[$name_index]); // 添加隨機(jī)作者名字到數(shù)組中
}
return $authors; // 返回隨機(jī)作者名字?jǐn)?shù)組
// 調(diào)用示例
$custom_count = 6; // 自定義調(diào)用的數(shù)量
$random_authors = diy_rand_author(time(), $custom_count);
// 輸出隨機(jī)的作者名字
foreach ($random_authors as $author) {
echo $author;
echo '<br>';
}
}
}
--------------------------------------------------
無法生成,頁面。
請問是哪里問題?或者 有什么更好的方式,解決?