制作一个简单的随机图api应该怎么写

2023-11-17 18:25:54 浏览数 (1)

en,突然被问到这个问题,在考科目四的路上越走越远 ,7号就考试了,目前依然心里没底 一把过一把过一把过(重要的事情说三遍)

那正题来了,随机输出一张图片,怎么写 我想到的第一个方法是,把图片链接解析成数组,然后随机数出

代码语言:javascript复制
<?php
/*
 * @Author: Qicloud
 * @Title: API
 * @Project: 随机图API
 * @QQ: 66547997
 * @Date: 2021-01-03 20:18:46
 * @LastEditTime: 2021-01-03 20:55:57
 * @你不懂我的热爱,又怎知我不明白
 */
$imgurl = array(
    'https://img.yuanmabao.com/zijie/pic/2023/11/17/chme4dfmzio.jpg',
    'https://img.yuanmabao.com/zijie/pic/2023/11/17/5qgpqx5us5g.jpg',
    'https://img.yuanmabao.com/zijie/pic/2023/11/17/oz3r4qa2qei.jpg',
    'https://img.yuanmabao.com/zijie/pic/2023/11/17/0srxxtg4lt5.jpg'
);
//var_dump($imgurl);下面贴输出结果
/* array(4) {
    [0]=>
    string(60) "https://img.yuanmabao.com/zijie/pic/2023/11/17/chme4dfmzio.jpg"
    [1]=>
    string(60) "https://img.yuanmabao.com/zijie/pic/2023/11/17/5qgpqx5us5g.jpg"
    [2]=>
    string(60) "https://img.yuanmabao.com/zijie/pic/2023/11/17/oz3r4qa2qei.jpg"
    [3]=>
    string(60) "https://img.yuanmabao.com/zijie/pic/2023/11/17/0srxxtg4lt5.jpg"
  }
   */
  //如此一来是不是可以直接
$randimgurl = $imgurl[array_rand($imgurl)];
//echo $randimgurl;
header('location:'.$randimgurl);

其实都是同理,我之前也写过一个demo就是读取数据库的 但是现在只是要一个api就不需要那么复杂了 读取txt文件内容然后转换成数组,是不是就很完美了

代码语言:javascript复制
<?php
/*
 * @Author: Qicloud
 * @Title: API
 * @Project: 随机图API
 * @QQ: 66547997
 * @Date: 2021-01-03 20:18:46
 * @LastEditTime: 2021-01-03 20:53:06
 * @你不懂我的热爱,又怎知我不明白
 */
$imgtxt = 'imgurl.txt';//路径及文件名我就放同级目录下了
//然后呢判断该文件是否存在
if (!file_exists($imgtxt)) {
    die($imgtxt .'数据文件不存在');
}
// 读取整个数据文件
$datafile = file_get_contents($imgtxt);
// 按换行符分割成数组
$datafile =explode("rn",$datafile);
//var_dump($datafile);输出以下结果
/* array(1) {
    [0]=>
    string(246) "https://img.yuanmabao.com/zijie/pic/2023/11/17/chme4dfmzio.jpg
  https://img.yuanmabao.com/zijie/pic/2023/11/17/5qgpqx5us5g.jpg
  https://img.yuanmabao.com/zijie/pic/2023/11/17/oz3r4qa2qei.jpg
  https://img.yuanmabao.com/zijie/pic/2023/11/17/0srxxtg4lt5.jpg"
  } */
  //然后就随机输出一行完事
  $imgurl = $datafile[array_rand($datafile)];
  //echo $imgurl;
  header('location:'.$imgurl);

0 人点赞