用JavaScript PHP隨機顯示圖片

來源:互聯網
上載者:User

想必你會用javascript隨機顯示圖片。但假如圖片的資料(比如連結)是經常變化,或是由使用者修改、增加的,怎麼辦?我這裡有個辦法。
把圖片的資料(如名稱、地址、連結等)放在一個TXT檔案裡(如有MYSQL更好,沒有也罷)。HTML檔案中由javascript調用PHP程式, PHP程式隨機讀取圖片資料。

readrand.php(此程式實際上是產生一句javascript語言)
<?
$arrayall=file("tp.txt");讀出tp.txt內容到數組
$arrays=count($arrayall);
if ($arrays==1){//because rand(0,0) is wrong
$selectrand=0;
}else{
srand((double)microtime()*1000000);//設定隨機數種子
$selectrand=rand(0,$arrays-1);
}
$exstr=explode(chr(9),$arrayall[$selectrand]);//從全部中隨機取出一個並分割
?>
document.write('<a href="<? echo $exstr[1];?>" target="new"><img src="<? echo $exstr[2];?>" width="200" height="50" alt="<? echo $exstr[0];?>" ></a>');

HTML檔案
<html>
<body>
<script language='javascript' src='readrand.php'>
</script>
</body>
</html>
(你可以把scripty放到你需要的位置,並可以加入setTimeout()函數以實現定時重新整理)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.