其实我是为了哪吒面板 v1 上网络人物插图准备的,实际把小人物图换成背景大图用在背景的代码上也就是变成了像 bing 轮播图一样的效果
准备 img 目录 和 index.php 文件
<?php
$img_array = glob('img/*.{gif,jpg,png,jpeg,webp,bmp}', GLOB_BRACE);
if(count($img_array) == 0) die('没有找到图片文件。MuaOoO ~'.dirname(__FILE__).'/img/ 文件夹');
header('Content-Type: image/webp');
echo(file_get_contents($img_array[array_rand($img_array)]));
以上代码保存为 php 文件名字随意 这里以 index.php 为例了
背景图片都放入 img 目录中
index.php 和 img 上传到网站根目录里 http(s):// 域名 /index.php 每次刷新网页图片随机显示 img 内的图片
index.php 和 img 上传到网站子目录里 如:ddd 目录下 http(s):// 域名 /ddd/index.php
正文完