php字符串及流程控制的方法
php
扫雷游戏
本篇文章主要介绍php字符串及流程控制的方法,感兴趣的朋友参考下,希望对大家有所帮助。
本文实例讲述了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中文网其他相关文章!
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章
R.E.P.O.能量晶体解释及其做什么(黄色晶体)
3 周前
By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
3 周前
By 尊渡假赌尊渡假赌尊渡假赌
刺客信条阴影:贝壳谜语解决方案
2 周前
By DDD
R.E.P.O.如果您听不到任何人,如何修复音频
3 周前
By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25:如何解锁Myrise中的所有内容
3 周前
By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

热门话题

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu

登录 CakePHP 是一项非常简单的任务。您只需使用一项功能即可。您可以记录任何后台进程(如 cronjob)的错误、异常、用户活动、用户采取的操作。在 CakePHP 中记录数据很容易。提供了 log() 函数

Visual Studio Code,也称为 VS Code,是一个免费的源代码编辑器 - 或集成开发环境 (IDE) - 可用于所有主要操作系统。 VS Code 拥有针对多种编程语言的大量扩展,可以轻松编写
