- 鐵幣
- 669 元
- 文章
- 230 篇
- 聲望
- 316 枚
- 上次登入
- 24-8-5
- 精華
- 0
- 註冊時間
- 06-7-9
- UID
- 280666
|
原文由 jacklf2004 於 06-10-8 04:13 PM 發表
請控制好圖檔大小。
PHP語法,首先要有php空間就是了(茶。
我已經做好php檔了..
用記事本
貼入
<?php
$okext = array("gif", "jpg", "jpeg", "png");
$dir = 'images';
if ($handle = opendir($dir)) {
while (false !== ($file = readdir($handle))) {
$ext = pathinfo($file);
$ext = $ext["extension"];
if ($file != "." && $file != ".." && in_array($ext, $okext)) {
$imfiles[] = $file;
}
}
closedir($handle);
}
$id = rand(0, count($imfiles)-1);
header('Content-Disposition: inline;');
readfile($dir."/".trim($imfiles[$id]));
?>
----------------------------我不是分隔線=3=~/--------------------
然後勒..
存為logo.php
接下來..php空間..哪找=3=?
[ 本文最後由 as946503 於 06-10-8 04:21 PM 編輯 ] |
|