用PHP程序實現隨機廣告圖片顯示_PHP教程
教程Tag:暫無Tag,歡迎添加,賺取U幣!
推薦:用PHP實現網頁開發中的翻頁跳轉我們都知道用 php mysql 在 web 頁實現數據庫資料全部顯示是非常簡單而有趣的,數據庫資料很少的情況下頁面顯示還是讓人滿意的,但是當數據庫資料非常多的情況下,頁面的顯示情況將會變的非常糟
以下為引用的內容: <?php #########隨機廣告顯示########## function myads(){ $dir="ads"; #設置存放記錄的目錄 //$dir="ads"; #設置存放記錄的目錄 $ads="$dir/ads.txt"; #設置廣告代碼文件 $log ="$dir/ads.log"; #設置ip記錄文件 $ads_lines=file($ads); $lines=count($ads_lines);#文件總行數 ####讀出廣告總數$ads_count和顯示次數到數組$display_array######## $ads_count=0; $display_count=0; for ($i=0;$i<$lines;$i ){ if((!strcmp(substr($ads_lines[$i],0,7),"display"))){ $ads_count =1; $display_array[$ads_count]=substr($ads_lines[$i],8); $display_count =$display_array[$ads_count]; } } ####決定隨機顯示序號$display_rand##### srand((double)microtime()*1000000); $display_rand = rand(1,$display_count); ###決定廣告序號$ads_num###### $pricount=0; $ads_num=1; for($i=1; $i<=$ads_count; $i ) { $pricount = $display_array[$i]; if ($display_rand<=$pricount) {$ads_num=$i;break;} } #####播放廣告######## $num=0; $flag=0; for($i=0;$i<$lines;$i ){ if((!strcmp(substr($ads_lines[$i],0,7),"display"))){$num ;} if(($num==$ads_num)and($flag==0)){$flag=1;continue;} if(($flag==1)and strcmp($ads_lines[$i][0],"#")){echo $ads_lines[$i];continue;} if(($flag==1)and(!(strcmp($ads_lines[$i][0],"#")))){break;} } ####紀錄廣告顯示次數######### $fp=fopen($log,"a"); fputs($fp,date( "Y-m-d H:i:s " ).getenv("REMOTE_ADDR")."==>".$ads_num."\n"); fclose($fp); } ?> |
廣告代碼文件ads.txt
以下為引用的內容: ########每個廣告代碼之間用'#'隔開,display為顯示加權數,越大顯示次數越多###### display=10 <a href="廣告1連接地址"> <img src="/images/banner/mb5ucomad1.gif" alt="廣告1"> </a> ################################ display=10 <a href="廣告2連接地址" target=_blank> <img src="/images/banner/mb5ucomad2.gif" width="468" height="60" alt="廣告2" border="0"></a> |
調用<?php myads();?>即可
分享:PHP網站開發中關于包含路徑問題的解決方案引言: 關于PERL與PHP中的包含路徑一直是一個比較難解的問題,主要是與操作系統和WEB服務器有關,不可能非常智能化的解決這個路徑問題。相對于PERL,PHP的路徑好得多,解決起來也容易得多,因
相關PHP教程:
- 相關鏈接:
- 教程說明:
PHP教程-用PHP程序實現隨機廣告圖片顯示。