API网站整合

樱花

搏天

樱道

小歪

保罗

墨天逸

EEE.DOG

东方Project

likepoems随机图

洛川唧上的萌部图片

Unsplash Image

缙哥哥博客

其它

自制随机图API

准备图片—>书写路径—>书写php文件

  • 在img文件夹里新建img.txt,文件中直接写图片的URL地址,如:
https://static.likepoems.com/2020/10/06/385ea1c4c8b4fbac57f5a0aa61f033761.jpg
https://static.likepoems.com/2021/06/12/20210126104630786.png

  • 新建index.php文件。文件内容如下:
<?php
//存放api随机图链接的文件名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"));
}

?>

  • 然后放在服务器里面的api文件夹里,绑定域名,记得开启php环境
  • 访问路径:你的域名/api/img