ZY/QFBJ.php

9 lines
211 B
PHP
Raw Permalink Normal View History

2023-03-02 00:15:21 +08:00
<?php
2023-03-02 00:03:15 +08:00
/**
* PHP随机图显示
*/
header('Content-Type: text/html; charset=UTF-8');
2023-03-02 00:15:21 +08:00
$img_array = glob("./img/*.jpg",GLOB_BRACE);
2023-03-02 00:03:15 +08:00
$img = array_rand($img_array);
header("location:.$img_array[$img]");
?>