首先新建一个php文件如"api.php"
写入代码
<?php
// 从 img.txt 文件中读取图片地址并随机选择一个进行重定向
$arr=file('img.txt');
// 计算文件中的行数,减去 1 是因为数组索引从 0 开始
$n=count($arr)-1;
// 循环执行一次
for ($i=1;$i<=1;$i++){
// 生成随机索引并进行重定向
$x=rand(0,$n);header("Location:".$arr[$x],"\n");}
?>
再在同一目录下新建“img.txt”
txt文件中填入所需的图片连接
一行一个
(建议连接写全,如"https://hltool.top/example.jpg")
使用时直接调用api.php
如"hltool.top/example/api.php"
Comments | NOTHING