#########隨機廣告顯示##########
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 if((!strcmp(substr($ads_lines[$i],0,7),"display"))){
display_array[$ads_count]=substr($ads_lines[$i],8);
$display_count =$display_array[$ . $display_rand#####
srand((double)microtime()*1000000);
$display_rand = rand(1,$display_count);
###決定廣告序號$ads_num ######
$pricount=0;
$ads_num=1;
for($i=1; $i $pricount = $ display_array[$i];
if ($display_rand}
#####播放廣告代碼#### #####
$num=0;
$flag=0;
for($i=0;$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
################################
display=10
調用即可
http://www.bkjia.com/PHPjc/315413.html
www.bkjia.com