php隨機背景圖怎麼表示

2020-07-16 10:06:48

隨機產生背景圖片PHP程式碼:

<?php
/** 
* PHP隨機圖顯示 
*/ 
header('Content-Type: text/html; charset=UTF-8'); 
$img_array = glob("./img/*.jpg",GLOB_BRACE); 
$img = array_rand($img_array); 
header("location:.$img_array[$img]"); 
?>

以上就是php隨機背景圖怎麼表示的詳細內容,更多請關注TW511.COM其它相關文章!