<?php
//API名称
$APIname='ACG_API';
// 存储数据的文件
$filename = 'link.txt';
if(!file_exists($filename)) {
die($filename.'数据文件不存在');
} else {
//读取资源文件
$giturlArr = file($filename);
}
$giturlData = [];
//将资源文件写入数组
foreach ($giturlArr as $key => $value) {
$value = trim($value);
if (!empty($value)) {
$giturlData[] = trim($value);
}
}
//获取随机数
$randKey = rand(0, count($giturlData)-1);
//取链接
$imgurl = $giturlData[$randKey];
$returnType = $_GET['return'];
switch ($returnType) {
case 'img':
$img = file_get_contents($imgurl, true);
header("Content-Type: image/jpeg;");
echo $img;
break;
case 'json':
$json['API_NAME'] = $APIname;
$json['imgurl'] = $imgurl;
$imageInfo = getimagesize($imgurl);
$json['width'] = $imageInfo[0];
$json['height'] = $imageInfo[1];
header('Content-type:text/json');
echo json_encode($json,JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES);
break;
default:
header("Location:" . $imgurl);
break;
}
?>
JSON格式输出:https://域名/tonm.php?return=json
直接输出图片:https://域名/tonm.php?return=img
PS:一个图片链接链接占一行
版权属于:Tonm
本文链接:https://owo-bo.cn/code/chapter-008.html
版权声明:转载时请注明本文出处及文章链接
Tips:如果您本文有什么疑问,欢迎在下方评论区进行留言反馈!!!
正在加载数据...
全部评论 (暂无评论)
info 还没有任何评论,你来说两句呐!