本文实例讲述了php实现的简易扫雷游戏。分享给大家供大家参考。具体如下:
<?php $init = $_POST["init"];//game restart $clickvalue = $_POST["clickvalue"];//minesweeping $checkflag = 0;//Victory or defeat $click_count = 0;//clicks count if($init == null && $clickvalue == null){//initialization $_POST = array();//set POST with a array $_POST["rows"] = 9;//set rows $_POST["cols"] = 9;//set cols $_POST["num"] = 10;//set num $_POST["timeshow"] = "00:00"; //set starttime $init = true;//set initialization } $rows = $_POST["rows"];//get rows $cols = $_POST["cols"];//get cols $num = $_POST["num"];//get num $starttime = $_POST["starttime"];//get starttime if($init){// is initialization $timeshow = "00:00";//set starttime $data = array();//data initialization for($i=0;$i<$rows;$i++){//all the rows for($j=0;$j<$cols;$j++){//all the cols $data["data".$i."_".$j] = 0;//set mine with null $data["open".$i."_".$j] = 0;//set node with close } } $i=0;//reset the index,and set the mines(Random setting) while($i < $num){//number of mine $r = rand(0,$rows - 1);//row's index $c = rand(0,$cols - 1);//col's index if($data["data".$r."_".$c] == 0){//if not a mine $data["data".$r."_".$c] = 100;//set the node with a mine $i++; } } for($i=0;$i<$rows;$i++){//all the rows for($j=0;$j<$cols;$j++){//all the cols if($data["data".$i."_".$j] == 100)continue; //is not a mine , set number of adjacent mines $cnt = 0; if($i - 1 >= 0 && $j - 1 >= 0 && $data["data".($i - 1)."_".($j - 1)] == 100)$cnt++;//upper left if($i - 1 >= 0 && $data["data".($i - 1)."_".$j] == 100)$cnt++;//left if($i - 1 >= 0 && $j + 1 < $cols && $data["data".($i - 1)."_".($j + 1)] == 100)$cnt++;//lower left if($j - 1 >= 0 && $data["data".$i."_".($j - 1)] == 100)$cnt++;//upper if($j + 1 < $cols && $data["data".$i."_".($j + 1)] == 100)$cnt++;//lower if($i + 1 < $rows && $j - 1 >= 0 && $data["data".($i + 1)."_".($j - 1)] == 100)$cnt++;//upper right if($i + 1 < $rows && $data["data".($i + 1)."_".$j] == 100)$cnt++;//right if($i + 1 < $rows && $j + 1 < $cols && $data["data".($i + 1)."_".($j + 1)] == 100)$cnt++;//lower right $data["data".$i."_".$j] = $cnt;//set number } } }else{ $data = $_POST;//get data if($data["data".$clickvalue] == 100){ //check the value of users click $checkflag = 2;//if click on a mine,gameover for($i=0;$i<$rows;$i++){//all the rows for($j=0;$j<$cols;$j++){//all the cols $data["open".$i."_".$j] = 1; //set all nodes to open } } }else{ $node = explode("_", $clickvalue);//get the node of click openNode($node[0],$node[1]);//set nodes to open for($i=0;$i<$rows;$i++){//all the rows for($j=0;$j<$cols;$j++){//all the cols if($data["open".$i."_".$j] == 1)$click_count++; //get the number of opennode } } if($rows*$cols - $click_count == $num)$checkflag = 1; //if all the node is open,game clear } } if($checkflag == 0 && $click_count == 1){ //if game is start ,time start $starttime = date("H:i:s"); } if($starttime){//Computing time and display $now = date("H:i:s"); $nowlist = explode(":",$now); $starttimelist = explode(":",$starttime); $time_count = $nowlist[0]*3600+$nowlist[1]*60 + $nowlist[2] - ($starttimelist[0]*3600+$starttimelist[1]*60 + $starttimelist[2]); $min = floor($time_count / 60); $sec = $time_count % 60; $timeshow = ($min>9?$min:"0".$min).":".($sec>9?$sec:"0".$sec); }else{ $timeshow = "00:00";//if game is stop , time stop } function openNode($i,$j){//set nodes to open,if it is can open global $rows;//get the rows global $cols;//get the cols global $data;//get the data if($i < 0 || $i >= $rows || $j < 0 || $j >= $cols || $data["open".$i."_".$j])return; //it is not a node,or it has been opened $data["open".$i."_".$j] = 1;//open the node if($data["data".$i."_".$j] > 0)return;//need to continue? openNode($i - 1,$j - 1); openNode($i - 1,$j); openNode($i - 1,$j + 1); openNode($i,$j - 1); openNode($i,$j + 1); openNode($i + 1,$j - 1); openNode($i + 1,$j); openNode($i + 1,$j + 1); } ?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>扫雷游戏</title> </head> <body> <form action="" method="post"> <input type="hidden" name="starttime" value="<?php echo $starttime;?>"/> <input type="hidden" name="clickvalue"/> <table style="top:10px;left:0px;z-index:0;margin:10px auto" border="1px"> <tr> <td width="100px" align="center"> <table width="100%" border="1px"> <tr><td>行数:</td><td><input type="text" name="rows" value="<?php echo $rows;?>" size="1"/></td></tr> <tr><td>列数</td><td><input type="text" name="cols" value="<?php echo $cols;?>" size="1"/></td></tr> <tr><td>雷数:</td><td><input type="text" name="num" value="<?php echo $num;?>" size="1"/></td></tr> <tr><td colspan="2" align="center"><input type="submit" value="重新开始" name="init"/></td></tr> </table> </td> <td width="50px" align="center"><font size="10px"><?php echo $checkflag < 2?"☺":"☹";?></font></td> <td width="100px" align="center"> <?php if($checkflag == 1)echo "恭喜,雷全部清掉了!<br />"; else if($checkflag == 2)echo "太挫了,又被雷炸死了<br />"; ?> <input type="text" name="timeshow" value="<?php echo $timeshow;?>" size="4" readonly > </td> </tr> </table> <table style="top:155px;left:0px;z-index:0;margin:10px auto" border="1px"> <?php for($i=0;$i<$rows;$i++){ ?> <tr> <?php for($j=0;$j<$cols;$j++){ ?> <td style="width:24px;height:24px;" align="center"> <input type="hidden" name="open<?php echo $i."_".$j;?>" value="<?php echo $data["open".$i."_".$j];?>"> <input type="hidden" name="data<?php echo $i."_".$j;?>" value="<?php echo $data["data".$i."_".$j];?>"> <?php if($data["open".$i."_".$j]){//show the value of node,if the node has been opened ?> <?php echo $data["data".$i."_".$j]==100?"☀":$data["data".$i."_".$j];?> <?php }else{//show a button ,if the node has not been opened ?> <input type="button" value="" onclick="clickNum('<?php echo $i."_".$j;?>')" style="width:20px;height:20px;"> <?php } ?> </td> <?php } ?> </tr> <?php } ?> </table> </form> <script type="text/javascript"> function clickNum(value){//click a node <?php if($checkflag > 0)echo 'return;';//if game is clear or game is over ?> document.forms[0].clickvalue.value = value; document.forms[0].submit(); } <?php if($checkflag == 0 && $click_count>0)echo 'setTimeout("timerun()",1000);';//time running ?> <?php if($checkflag == 1)echo 'alert("恭喜,雷全部清掉了!");';?> <?php if($checkflag == 2)echo 'alert("太挫了,又被雷炸死了");';?> function timerun(){//time running var timelist = document.forms[0].timeshow.value.split(":"); var sec = parseInt(timelist[1],10) + 1; var min = sec < 60?parseInt(timelist[0],10):(parseInt(timelist[0],10) + 1); document.forms[0].timeshow.value = (min>9?min:"0"+min)+":"+(sec > 9?sec:"0"+sec); setTimeout("timerun()",1000); } </script> </body> </html>
希望本文所述对大家的php程序设计有所帮助。

PHP用於構建動態網站,其核心功能包括:1.生成動態內容,通過與數據庫對接實時生成網頁;2.處理用戶交互和表單提交,驗證輸入並響應操作;3.管理會話和用戶認證,提供個性化體驗;4.優化性能和遵循最佳實踐,提升網站效率和安全性。

PHP在數據庫操作和服務器端邏輯處理中使用MySQLi和PDO擴展進行數據庫交互,並通過會話管理等功能處理服務器端邏輯。 1)使用MySQLi或PDO連接數據庫,執行SQL查詢。 2)通過會話管理等功能處理HTTP請求和用戶狀態。 3)使用事務確保數據庫操作的原子性。 4)防止SQL注入,使用異常處理和關閉連接來調試。 5)通過索引和緩存優化性能,編寫可讀性高的代碼並進行錯誤處理。

在PHP中使用預處理語句和PDO可以有效防範SQL注入攻擊。 1)使用PDO連接數據庫並設置錯誤模式。 2)通過prepare方法創建預處理語句,使用佔位符和execute方法傳遞數據。 3)處理查詢結果並確保代碼的安全性和性能。

PHP和Python各有優劣,選擇取決於項目需求和個人偏好。 1.PHP適合快速開發和維護大型Web應用。 2.Python在數據科學和機器學習領域佔據主導地位。

PHP在電子商務、內容管理系統和API開發中廣泛應用。 1)電子商務:用於購物車功能和支付處理。 2)內容管理系統:用於動態內容生成和用戶管理。 3)API開發:用於RESTfulAPI開發和API安全性。通過性能優化和最佳實踐,PHP應用的效率和可維護性得以提升。

PHP可以輕鬆創建互動網頁內容。 1)通過嵌入HTML動態生成內容,根據用戶輸入或數據庫數據實時展示。 2)處理表單提交並生成動態輸出,確保使用htmlspecialchars防XSS。 3)結合MySQL創建用戶註冊系統,使用password_hash和預處理語句增強安全性。掌握這些技巧將提升Web開發效率。

PHP和Python各有優勢,選擇依據項目需求。 1.PHP適合web開發,尤其快速開發和維護網站。 2.Python適用於數據科學、機器學習和人工智能,語法簡潔,適合初學者。

PHP仍然具有活力,其在現代編程領域中依然佔據重要地位。 1)PHP的簡單易學和強大社區支持使其在Web開發中廣泛應用;2)其靈活性和穩定性使其在處理Web表單、數據庫操作和文件處理等方面表現出色;3)PHP不斷進化和優化,適用於初學者和經驗豐富的開發者。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。

EditPlus 中文破解版
體積小,語法高亮,不支援程式碼提示功能

DVWA
Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

Dreamweaver CS6
視覺化網頁開發工具

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。