相关关键词
关于我们
最新文章
PHP Socket网络操作类定义与用法示例
发布日期:2017-08-30 00:00:00
59
本文实例讲述了PHP Socket网络操作类定义与用法。分享给大家供大家参考,具体如下:
web前端测试:
<html> <head> <title>test</title> <script> g_xmlHttpReq = new XMLHttpRequest(); function onReplyCallback() { if(g_xmlHttpReq.readyState==4 && g_xmlHttpReq.status==200) { alert(g_xmlHttpReq.responseText); } } function on_stop_service() { var cmd = document.getElementById("inCmd").value; g_xmlHttpReq.open("GET","./service/main.php?cmd=" + cmd,true); g_xmlHttpReq.onreadystatechange=onReplyCallback; g_xmlHttpReq.send(null); } </script> </head> <body> <input type="text" id="inCmd"> <hr> <button onclick="on_stop_service()">关闭服务</button> </body> </html>