php随机链接api文本txt版

创建一个txt文件具体可参考随机视频API

点击查看代码
<?php

function read(...$filelist) {
    $list = [];
    foreach ($filelist as $file) {
        $handle = fopen($file, 'r');
        while (($line = fgets($handle)) !== false) {
            array_push($list, trim($line));
        }
        fclose($handle);
    }
    return $list;
}

$list = read('ks.txt');
$url = $list[array_rand($list)];

header("Location: {$url}");
posted @ 2021-11-24 21:18  小kBlog  阅读(269)  评论(0编辑  收藏  举报