首先在网站跟目录下创建一个文件夹(img)和一个名为 api.php 的文件,然后在 img 的文件夹内放入图片。然后把下列代码放在 api.php 里
<?php
//存有image链接的文件名img.txt
$filename = "img.txt";
if(!file_exists($filename)){
die('文件不存在');
}
//从文本获取链接
$pics = [];
$fs = fopen($filename, "r");
while(!feof($fs)){
$line=trim(fgets($fs));
if($line!=''){
array_push($pics, $line);
}
}
//从数组随机获取链接
$pic = $pics[array_rand($pics)];
//返回指定格式
$type=$_GET['type'];
switch($type){
//JSON返回
case 'json':
header('Content-type:text/json');
die(json_encode(['pic'=>$pic]));
default:
die(header("Location: $pic"));
}
?>
然后在这个目录下创建一个名为img.txt 文档,将图片的路径文件名填入此文档,一行一个。
直接输出图片:`https://域名/img/api.php
最后更新 2022-11-17