tvbox/img.php

10 lines
250 B
PHP
Raw Normal View History

2022-09-19 10:10:23 +08:00
<?php
2022-09-19 09:51:53 +08:00
/**
* PHP随机图显示
*/
header('Content-Type: text/html; charset=UTF-8');
2022-09-19 10:10:23 +08:00
$img_array = glob("https://gitcode.net/chuqiuyu/chuqiuyu/-/raw/master/img/*.jpg",GLOB_BRACE);
2022-09-19 09:51:53 +08:00
$img = array_rand($img_array);
header("location:.$img_array[$img]");
2022-09-19 10:10:23 +08:00
?>