随机图片API接口PHP源码
源码一
首先我们要在网站的根目录下新建一个PHP文件,名称可以自定义。
在新建的PHP文件里面写入源码
<?php
$img_array = glob('rimages/*.{gif,jpg,png,jpeg,webp,bmp}', GLOB_BRACE);
if(count($img_array) == 0) die('没找到图片文件。请先上传一些图片到 '.dirname(__FILE__).'/rimages/ 文件夹');
header('Content-Type: image/png');
echo(file_get_contents($img_array[array_rand($img_array)]));
?>
然后在同级目录下新建一个文件夹,名为“rimages”
把图片文件放入rimages文件夹里,图片文件名称可以自定义。
最后访问你的PHP文件,例:域名/img.php
源码二
创建文件img.txt用于存放图片地址
创建index.php加入以下代码
<?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"));
}?>
将img.txt和index.php放在同一个网站目录下,通过访问域名/index.php即可。
本文转载自网络。
空空如也!