• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php实现的简易扫雷游戏实例_php技巧

php 搞代码 4年前 (2022-01-26) 40次浏览 已收录 0个评论

本文实例讲述了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= 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 = 0 && $data["data".$i."_".($j - 1)] == 100)$cnt++;//upper       if($j + 1 < $cols && $data["data".$i."_".($j + 1)] == 100)$cnt++;//lower       if($i + 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;$j9?$min:"0".$min).":".($sec>9?$sec:"0".$sec); }else{   $timeshow = "00:00";//if game is stop , time stop } function op<div style="color:transparent">!本文来源gaodai.ma#com搞##代!^码网(</div><sup>搞gaodaima代码</sup>enNode($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 = $rows || $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); } ?>   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>扫雷游戏</title>  <body>  <input type="hidden" name="starttime" value=""/>  <table style="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="" size="1"/></td></tr>     <tr><td>列数</td><td><input type="text" name="cols" value="" size="1"/></td></tr>     <tr><td>雷数:</td><td><input type="text" name="num" value="" size="1"/></td></tr>     <tr><td colspan="2" align="center"></td></tr>   </table> </td> <td width="50px" align="center"><font size="10px"><?php echo $checkflag </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="" size="4" readonly > </td> </tr> </table> <table style="margin:10px auto" border="1px"> <?php for($i=0;$i   <tr>   <?php for($j=0;$j     <td style="width:24px;height:24px" align="center">     <input type="hidden" name="open" value="">     <input type="hidden" name="data" value="">                       <input type="button" value="" onclick="clickNum('')" style="width:20px;height:20px;">          </td>      </tr>  </table>  <script type="text/javascript"> function clickNum(value){//click a node    0)echo 'return;';//if game is clear or game is over ?>   document.forms[0].clickvalue.value = value;   document.forms[0].submit(); } 0)echo 'setTimeout("timerun()",1000);';//time running ?>   function timerun(){//time running   var timelist = document.forms[0].timeshow.value.split(":");   var sec = parseInt(timelist[1],10) + 1;   var min = sec 9?min:"0"+min)+":"+(sec > 9?sec:"0"+sec);   setTimeout("timerun()",1000); } </script>  

希望本文所述对大家的php程序设计有所帮助。


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php实现的简易扫雷游戏实例_php技巧
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址