利用php來自動調用不同伺服器上的flash

來源:互聯網
上載者:User

近期,學校校慶,做了一個flash動畫的網站,但體積比較龐大。如果上傳到學校的伺服器,從公眾資訊網訪問就比較慢,而放到教育網外從校園網訪問就比較不流暢,還好,我們有php,解決了這一問題!
代碼如下:
<html>
<head>
<title>慶校慶</title>
</head>
<body bgcolor="#f2d560" topmargin=0 leftmargin=0>
<?php
$remote_addr=getenv("REMOTE_ADDR");
$testip="202.117.6";
$realip=substr($remote_addr,0,9);
if($testip==$realip){
$url="http://202.117.68.12/~flyhawk/cau.swf";
$word="長大校園網";
}else{
$url="http://webnow.oso.com.cn/cau.swf";
$word="公眾資訊網";
}
?>
<script language="JavaScript">
function Info()
{

if (!confirm("歡迎光臨長安校慶專題網"+"\n\n您的IP:<? echo $remote_addr ?>\n\n您來自<? echo $word ?>\n\n請稍候.....\n\n正在引導網頁以提供最快的網路傳輸"+"\n\n\n請按確定進入本頁瀏覽\n"+"\n按取消將離開本站\n"+"\n\n\n【我愛長安大學】 "))

history.go(-1);return " "

}

document.writeln(Info())</script>

</SCRIPT>

<embed src="<? echo $url ?>" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100%" height="98%">
</embed>

</body>
</html>
簡單提示:
$remote_addr=getenv("REMOTE_ADDR"); 是獲得客戶機的ip.
$realip=substr($remote_addr,0,9);獲得ip的前9個位元組,因為我們學校的ip地址是202.117.6*.*,所以,通過判斷$realip與$testip的值的不同來確定$url的值,即flash的檔案位置。
本程式的示範請見:http://www.caunet.com

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.