由于主机吧头像经常图裂,考虑做个随机头像 api 接口,资源文件在后面,代码如下:
<?php
$type = isset($_GET['type']) ? $_GET['type'] : '';
$dirPath = './' . $type . '/';
if ($type != '' && is_dir($dirPath)) {
$files = glob($dirPath . '*.{jpg,png,webp}', GLOB_BRACE);
if (count($files) > 0) {
$imagePath = $files[array_rand($files)]; // 随机选择一张图片
header('Content-Type: image/jpeg');
readfile($imagePath);
} else {
echo $files.'No image found in this directory';
}
} else {
echo 'Invalid request';
}
?>
该 php 文件可放在根目录下的 randomimg 文件夹下,命名为 index.php,然后将头像文件夹命名为 tx,放在 randimg 文件夹下,访问 /randomimg/index.php?type=tx
即可访问随机头像。
如果你有其他的类型的图片,比如随机缩略图,那么命名为 thumbnail 文件夹,同样放在 randomimg 文件夹下,访问 /randomimg/index.php?type=thumbnail
即可访问随机缩略图。
相关截图:
没有回复内容