最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
PHP jquery ajax实现即时聊天功能
时间:2022-06-24 22:59:05 编辑:袖梨 来源:一聚教程网
代码如下 | 复制代码 |
index.html data.php header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); header("Cache-Control: no-cache, must-revalidate"); header("Pramga: no-cache"); set_time_limit(0); $get = $_GET['action']; $type = $_GET['type']; $file = $type.'.txt'; if(isset($get) && isset($type) && file_exists($file)){ switch($get){ case 'first': $chat = file_get_contents($file); $json=array( 'status' => 200, 'time' => gmdate("s"), 'chat' => $chat, ); echo json_encode($json); break; www.111com.net case 'while': $oldsize = filesize($file); $newsize = filesize($file); while(true){ if($oldsize!=$newsize){ $chat = file_get_contents($file); $json=array( 'status' => 200, 'time' => gmdate("s"), 'chat' => $chat, ); echo json_encode($json); exit; } clearstatcache(); $newsize = filesize($file); usleep(10000); } break; } } ?> send.php $json = array(); $txt = isset($_GET['txt'])?$_GET['txt']:''; $type = isset($_GET['type'])?$_GET['type']:''; if($txt!=''){ $file = $type.".txt"; if(file_exists($file)){ $fp = fopen($file,"a"); $str = "rn".'Admin:'.$txt; //$str = $txt."n"//linux; fwrite($fp, $str); fclose($fp); $json['status']=200; echo json_encode($json); exit; } } ?> |
相关文章
- 《燕云十六声》花下眠隐藏任务攻略 02-05
- 《七日世界》全地图密藏位置大全一览 02-05
- 《逆水寒手游》笼中雀奇遇攻略 02-05
- 《逆水寒手游》月下幽影奇遇攻略 02-05
- 《最终幻想14:水晶世界》食果花鼠宠物获得方法 02-05
- 《最终幻想14:水晶世界》吉多宠物获得方法 02-05