1:将准备好的图片URL存在一个txt中,如下图
2:写一个php文件。当用户请求API时,php就去读取txt文件,然后生成随机数来随机选取一个图片连接
<?php
//存有美图链接的文件名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"));
}
?>
3:将上述代码保存PHP文件。放入项目。
4:访问该文件将随机返回图片URL
个人实现:https://www.shunlovejin.com/imgapi.php
Comments NOTHING