博客主页 👒
自建一个随机图片API接口[自建API]

Author:

墨觉

©

Wordage:

共计 2303 字

needs:

约 1 分钟

Popular:

69 ℃

Created:

目 录

前言

既然玩博客,随机图肯定会用到,前前后后用了不少共用的API,我感觉有几点不好的地方

服务不可控,随时可能挂掉,而且有的很慢
图片不一定喜欢,而且也无法更换
API资源也不太好找
基于以上三个方面,决定自己搭建一个随机图片API,简单使用,可随时增减照片,服务可用性也更可控

搭建也非常简单,一共二步就搞定了

教程

在宝塔界面添加网站,例如 api.mojue88.com,PHP版本任意
进入网站根目录,新建img文件夹(可选)
进入img文件夹,新建index.php并把下方相应代码粘贴进来,修改第10行相应位置并保存
在img文件夹中,新建img.txt,里面输入图片路径并保存,一行一个,也可以复制粘贴下方链接
然后访问 你的域名/img 即可看到效果。由于教程过于简单,就不出图片教程了。

index.php文件:

    <?php
function get_random_image($url) {
    $imageUrls = file($url, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
    if ($imageUrls === false) {
        return null;
    }
    $randomImageUrl = $imageUrls[array_rand($imageUrls)];
    return $randomImageUrl;
}
$imageUrlFile = "img.txt的链接路径,例如https://api.mojue88.com/img.txt";
$randomImage = get_random_image($imageUrlFile);
if ($randomImage) {
    header("Location: $randomImage");
    exit;
} else {
    echo "无法获取随机美图URL。";
}
?>

img.txt

http://p16.qhimg.com/t018417de2ff2756584.jpg
http://p17.qhimg.com/t0178f6c738ffcfd416.jpg
http://p17.qhimg.com/t01ec164cddc40aa500.jpg
http://p19.qhimg.com/t010f79eb57a2478acd.jpg
http://p15.qhimg.com/t010c7d0c74ae478c40.jpg
http://p19.qhimg.com/t014e84972712c358af.jpg
http://p16.qhimg.com/t010147e763ba6aa44f.jpg
http://p19.qhimg.com/t0169fcd4b81241b401.jpg
http://p15.qhimg.com/t0132a5367d8a0a23cd.jpg
http://p19.qhimg.com/t01057ccb26266d1c46.jpg
http://p19.qhimg.com/t01014ed03439a3882c.jpg
http://p16.qhimg.com/t012c72977098ebb457.jpg
http://p18.qhimg.com/t01bfcf1a07262f67b0.jpg
http://p19.qhimg.com/t01cdf90dbaf2f14388.jpg
http://p18.qhimg.com/t0141dc7db3547fa30f.jpg
http://p16.qhimg.com/t013f6256f582641c74.jpg
http://p15.qhimg.com/t0101f8be30901fc125.jpg
http://p15.qhimg.com/t015198398e813b47de.jpg
http://p18.qhimg.com/t0197e3ee318502edaf.jpg
http://p19.qhimg.com/t017c3ae044a99a2f6f.jpg
http://p17.qhimg.com/t015fa94a05dce090ba.jpg
http://p15.qhimg.com/t0149b810095f66415c.jpg
http://p15.qhimg.com/t01d13ca19600335461.jpg
http://p15.qhimg.com/t01535b0e04caee74c2.jpg
http://p15.qhimg.com/t015e44901abf1e6aa4.jpg
http://p19.qhimg.com/t01e681bb547112c65d.jpg
http://p17.qhimg.com/t01a8896cfdfa682087.jpg
http://p17.qhimg.com/t01218b08576a95c699.jpg

如果对你有用的话就支持一下叭·Thanks♪(・ω・)ノ

文章二维码
自建一个随机图片API接口[自建API]
共计 1 条评论,点此发表评论
  1. 头像
    墨觉
    Lv.5

    博主

    如果对你有用的话就支持一下叭·Thanks♪(・ω・)ノ

    · MacOS · Safari · 海外
博客主页 墨觉の日记 繁华落尽谁许我一世安好 百度统计
萌ICP备20240345号 滇ICP备2024033568号-1 滇公网安备53262202000150号 本站已运行 362 天 9 小时 42 分 自豪地使用 Typecho 建站,并搭配 MyDiary 主题 Copyright © 2024 ~ 2025. 墨觉の日记 All rights reserved.
打赏图
打赏博主
欢迎
搜 索
足 迹
分 类
  • 🎨 生活日常
  • 📖 文案分享