首頁  >  文章  >  後端開發  >  隨機頭像PHP版_PHP教程

隨機頭像PHP版_PHP教程

WBOY
WBOY原創
2016-07-21 16:08:52976瀏覽


1.  31位元組 PHP 隨機顯示頭像 




2. php

$url='pic';
//圖片位址,用相對路徑

$files=array();
if ($handle=opendir("$ url")) {
while(false !== ($file = readdir($handle))) { 
if ($file != "." & $ 🎜>if(substr($file,-3)=='gif' 
 substr($file,-3)=='jpg') $files[count($files)] = $file;
}

}
closedir($handle); 

$random=rand(0,count($files)-1);
if(substr($files[ $random],-3)=='gif') header("Content-type: image/gif");
elseif(substr($files[$random],-3)=='jpg') header ("Content-type: image/jpeg");
readfile("$url/$files[$random]");

?>


http://www.bkjia.com/PHPjc/314683.html

truehttp: //www.bkjia.com/PHPjc/314683.htmlTechArticle1.31位元組PHP隨機顯示頭像?readfile(rand(0,5).'.jpg');? 2. ?php $url='pic'; //圖片位址,用相對路徑$files=array(); if($handle=opendir("$url")){ while(false!==($file. ..
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn