首页 > 开发 > PHP > 正文

php猜单词游戏

2024-05-04 23:39:22
字体:
来源:转载
供稿:网友

这是一款基于php实现的猜单词小游戏,用的SESSION配合AJAX实现的,感兴趣的小伙伴可以参考一下。

直接复制本地运行就可以了
 

  1. <?php 
  2.  
  3. session_start(); 
  4.  
  5. header("Content-type:text/html;charset=utf-"); 
  6.  
  7. $url='http://'$_SERVER['HTTP_HOST']$_SERVER['PHP_SELF']; 
  8.  
  9. function get_word(){ 
  10.  
  11. $wordtext="Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution Neither the name of Yii Software LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE"
  12.  
  13. $words=preg_split("/[/s,]+/",$wordtext); 
  14.  
  15. do
  16.  
  17. $i=rand(,count($words)-); 
  18.  
  19. $word=strtoupper($words[$i]); 
  20.  
  21. }while(strlen($word)< || !ctype_alpha($word)); 
  22.  
  23. return $word; 
  24.  
  25.  
  26. function guess($word){ 
  27.  
  28. return str_repeat('_',strlen($word)); 
  29.  
  30.  
  31. function output($word){ 
  32.  
  33. $str=''
  34.  
  35. for($i=;$i<strlen($word);$i++){ 
  36.  
  37. $str=$word[$i]""
  38.  
  39.  
  40. return rtrim($str); 
  41.  
  42.  
  43. if(isset($_GET['op']) && $_GET['op']=='start'){ 
  44.  
  45. $k=$_GET['k']; 
  46.  
  47. $_SESSION['num']=$k; 
  48.  
  49. exit; 
  50.  
  51.  
  52. if(isset($_GET['restart']) && $_GET['restart']==){ 
  53.  
  54. session_unset(); 
  55.  
  56. header("location:$url"); 
  57.  
  58. exit; 
  59.  
  60.  
  61. if(!isset($_SESSION['word'])){ 
  62.  
  63. $word=get_word(); 
  64.  
  65. $_SESSION['word']=$word; 
  66.  
  67. }else
  68.  
  69. $word=$_SESSION['word']; 
  70.  
  71.  
  72. $guessguess_word=guess($word); 
  73.  
  74. if(isset($_GET['op']) && $_GET['op']=='ajax'){ 
  75.  
  76. $k=$_GET['k']; 
  77.  
  78. $re=''
  79.  
  80. if(!isset($_SESSION['already'])){ 
  81.  
  82. $_SESSION['already']=guess($_SESSION['word']); 
  83.  
  84.  
  85. if(!isset($_SESSION['count'])){ 
  86.  
  87. $_SESSION['count']=; 
  88.  
  89.  
  90. if(strpos($_SESSION['word'],$k)!==false){ 
  91.  
  92. for($i=;$i<strlen($_SESSION['word']);$i++){ 
  93.  
  94. if($_SESSION['word'][$i]!=$k){ 
  95.  
  96. $re='_'
  97. }else
  98. $re=$_SESSION['word'][$i]; 
  99.  
  100. for($i=;$i<strlen($_SESSION['word']);$i++){ 
  101.  
  102. if($_SESSION['already'][$i]=='_'){ 
  103. $_SESSION['already'][$i]=$re[$i]; 
  104.  
  105.  
  106.  
  107. }else
  108.  
  109. $_SESSION['count']+=; 
  110.  
  111.  
  112. $return=output($_SESSION['already']); 
  113.  
  114. if($_SESSION['count'] <= $_SESSION['num']){ 
  115.  
  116. if($_SESSION['already']==$_SESSION['word']){ 
  117.  
  118. $return="|"
  119.  
  120. }else
  121.  
  122. $return="|"
  123.  
  124.  
  125. }else
  126.  
  127. $return="|"
  128.  
  129.  
  130. echo $return
  131.  
  132. exit; 
  133.  
  134.  
  135. ?> 
  136.  
  137. <script> 
  138.  
  139. function Ajax(recvType){ 
  140.  
  141. var aj=new Object(); 
  142.  
  143. ajrecvType=recvType ? recvTypetoUpperCase() : 'HTML'
  144.  
  145. ajtargetUrl=''
  146.  
  147. ajsendString=''
  148.  
  149. ajresultHandle=null
  150.  
  151. ajcreateXMLHttpRequest=function(){ 
  152.  
  153. var xmlHttp = false
  154.  
  155. if(windowXMLHttpRequest){ 
  156.  
  157. xmlHttp = new XMLHttpRequest(); 
  158. }else if(windowActiveXObject){ 
  159. try
  160. xmlHttp = new ActiveXObject("MsxmlXMLHTTP"); 
  161. }catch(error){ 
  162. try
  163. xmlHttp = new ActiveXobject("MicrosoftXMLHttp"); 
  164. }catch(error){ 
  165. xmlHttp = false
  166. return xmlHttp; 
  167.  
  168. ajXMLHttpRequest=ajcreateXMLHttpRequest(); 
  169. ajprocessHandle=function(){ 
  170.  
  171. if(ajXMLHttpRequestreadyState == ){ 
  172.  
  173. if(ajXMLHttpRequeststatus == ){ 
  174. if(ajrecvType=="HTML"){ 
  175. ajresultHandle(ajXMLHttpRequestresponseText); 
  176. }else if(ajrecvType=="XML"){ 
  177. ajresultHandle(ajXMLHttpRequestresponseXML); 
  178. ajget=function(targetUrl, resultHandle){ 
  179. ajtargetUrl=targetUrl; 
  180. if(resultHandle!=null){ 
  181. ajXMLHttpRequestonreadystatechange=ajprocessHandle; 
  182. ajresultHandle=resultHandle; 
  183. if(windowXMLHttpRequest){ 
  184. ajXMLHttpRequestopen("get", ajtargetUrl); 
  185. ajXMLHttpRequestsend(null); 
  186. }else
  187. ajXMLHttpRequestopen("get", ajtargetUrl, true); 
  188. ajXMLHttpRequestsend(); 
  189. return aj; 
  190. </script> 
  191. <script> 
  192. var ajax=Ajax(); 
  193. function select(v){ 
  194. documentgetElementById(v)styledisplay='none'
  195. ajaxget("guessphp?op=ajax&k="+v, function(r){ 
  196. var t=rsplit("|"); 
  197. documentgetElementById('word')innerHTML=t[]; 
  198. if(t[] == ){ 
  199. documentgetElementById('select')styledisplay='none'
  200. documentgetElementById('result')innerHTML='成功'
  201. }else if(t[] == ){ 
  202. documentgetElementById('select')styledisplay='none'
  203. documentgetElementById('result')innerHTML='失败'
  204. }); 
  205. function check(v){ 
  206. ajaxget("guessphp?op=start&k="+v, function(r){ 
  207. windowlocationhref="<?php echo $url;?>"
  208. }); 
  209. </script> 
  210. <?php 
  211. if(!isset($_SESSION['num'])){ 
  212. echo '<input type="radio" onclick="check();" /> easy: wrong <br />'
  213. echo '<input type="radio" onclick="check();" /> normal: wrong <br />'
  214. echo '<input type="radio" onclick="check();" /> hard: wrong <br />'
  215. }else
  216. //echo $word; 
  217. echo "最多可以猜错 "$_SESSION['num']" 次"
  218. echo "<br />"
  219. echo "<div id='word'>"
  220. echo output($guess_word); 
  221. echo "</div>"
  222. echo '<br />'
  223. echo '<div id="select">'
  224. for($i=ord('A');$i<=ord('Z');++$i){ 
  225. echo "/n"
  226. $letter=chr($i); 
  227. echo '<span id="'$letter'" style="display:"><a href="javascript:void();" onclick="select(/''$letter'/');">'$letter'</a></span>'
  228. echo '</div>'
  229. echo '<br />'
  230. echo '<br />'
  231. echo '<div id="result"></div>'
  232. echo '<br />'
  233. echo '<br />'
  234. echo '<a href="'$url'?restart=">重新开始</a>'
  235. ?> 

这是一款php实现的猜单词游戏,希望大家可以举一反三,实现其他小游戏,熟练掌握php编程。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表