9 lines
206 B
PHP
9 lines
206 B
PHP
|
<?php
|
||
|
/**
|
||
|
* PHP随机图显示
|
||
|
*/
|
||
|
header('Content-Type: text/html; charset=UTF-8');
|
||
|
$img_array = glob("./P/*.jpg",GLOB_BRACE);
|
||
|
$img = array_rand($img_array);
|
||
|
header("location:.$img_array[$img]");
|
||
|
?>
|