PHP ソケット プログラミングは初めてで、実験する例を見つけましたが、サーバーと通信すると、サーバー ソケットが閉じる前に応答を取得するのに 1 分かかります。
次のコードがあります: SERVER.php
<?php
$host = "127.0.0.1";
$port = 1234;
// don't timeout!
set_time_limit(0);
// create socket
$socket = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create socket\n");
// bind socket to port
$result = socket_bind($socket, $host, $port) or die("Could not bind to socket\n");
// start listening for connections
$result = socket_listen($socket, 3) or die("Could not set up socket listener\n");
// accept incoming connections
// spawn another socket to handle communication
$spawn = socket_accept($socket) or die("Could not accept incoming connection\n");
// read client input
$input = socket_read($spawn, 1024) or die("Could not read input\n");
// clean up input string
$input = trim($input);
// reverse client input and send back
$output = strrev($input) . "\n";
socket_write($spawn, $output, strlen ($output)) or die("Could not write output\n");
// close sockets
socket_close($spawn);
socket_close($socket);
?>
すぐに反応させるにはどうすればよいでしょうか。ありがとう
ターミナルでクライアント コードを実行すると、すぐに応答が返されます。しかし、テキスト ボックスを追加してブラウザーから実行すると、応答がブラウザーに表示されるまでにちょうど 1 分かかります。
私のCLIENT.phpを見る必要がある場合は、ここにあります...
<html>
<head>
</head>
<body>
<form action="<? echo $PHP_SELF; ?>" method="post">
Enter some text:<br>
<input type="Text" name="message" size="15"><input type="submit" name="submit" value="Send">
</form>
<?php
if (isset($_POST['submit']))
{
// form submitted
// where is the socket server?
$host="127.0.0.1";
$port = 1234;
// open a client connection
$fp = fsockopen ($host, $port, $errno, $errstr);
if (!$fp)
{
$result = "Error: could not open socket connection";
}
else
{
// get the welcome message
fgets ($fp, 1024);
// write the user string to the socket
fputs ($fp, $_POST['message']);
// get the result
$result .= fgets ($fp, 1024);
// close the connection
fputs ($fp, "exit");
fclose ($fp);
// trim the result and remove the starting ?
$result = trim($result);
// now print it to the browser
}
?>
Server said: <b><? echo $result; ?></b>
<?
}
?>
</body>
</html>