FongMi影视和tvbox配置文件,如果喜欢,请Fork自用。使用前请仔细阅读仓库说明,一旦使用将被视为你已了解。
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
/**
|
|
* PHP随机图显示
|
|
*/
|
|
header('Content-Type: text/html; charset=UTF-8');
|
|
$img_array = glob("https://gitcode.net/chuqiuyu/chuqiuyu/-/raw/master/img/*.jpg",GLOB_BRACE);
|
|
$img = array_rand($img_array);
|
|
header("location:.$img_array[$img]");
|
|
?>
|
|
|