我正在尝试制作一个简单的聊天服务器。
我正在使用html表单来测试它。现在我想通过创建一些PHP scrips并让它们在同一时间运行它们来确定它是否真的有效。
我正在使用curl来发布帖子。当我尝试向聊天服务器发送帖子消息时,接受永远不会消失。但如果我提交表格,就会看到它。
服务器代码
server = new ServerSocket(1079); // port 62
// Loop forever
while(true)
{
///////////////////////////////////////////////////
// get a new connection
///////////////////////////////////////////////////
System.out.println("Aceepting connections on port 1030 \r");
try{
// Get New Connection
// wait for ever on accepting new connections
server.setSoTimeout(0);
connection = server.accept();
cConnection thread = new cConnection("thread3", connection);
PHP脚本:
extract($_POST);
//set POST variables
$url = 'http://localhost:1079/enter';
$fields = array(
'username'=>urlencod("tedpottel"),
'password'=>urlencode("oreo8157"),
'comment'=>urlencode("new comment"),
);
//url-ify the data for the POST
foreach($fields as $key => $value) {
$fields_string .= $key . '=' . $value . '&';
}
rtrim($fields_string,'&');
//open connection
$ch = curl_init();
//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST,count($fields));
curl_setopt($ch,CURLOPT_POSTFIELDS,$fields_string);
//execute post
$result = curl_exec($ch);
print $result;
//close connection
curl_close($ch);
HTML表单
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="http://localhost:1079/enter">
<input name="username" type="text" value="tedpottel" />
<input name="password" type="text" value="oreo8157" />
<input name="comment" type="text" value="Hi There" />
<input type="submit" />
</form>
</body>
</html>
答案 0 :(得分:0)
根据之前评论中指出的差异,我不得不相信你只是简单地复制粘贴(为什么你会做其他事情?)。因此,在PHP脚本中,这是一个错误:
'username'=>urlencod("tedpottel")
您打算写 urlencode 。但我不认为这会导致server.accept()不响应。
当你的意思是“模仿”时,我对你使用“献祭”感到很开心。