I have copied Client/Server Socket Program from the following source
but when i run it in my browser it gives following error message:
socket_bind() reason: Only one usage of each socket address (protocol/network address/port) is normally permitted.
I have searched and tried different solutions but was unable to found the solution. Please help My code is below.
Server.php
<?php
error_reporting(E_ALL);
/* Permitir al script esperar para conexiones. */
//set_time_limit(0);
/* Activar el volcado de salida implícito, así veremos lo que estamo obteniendo
* mientras llega. */
ob_implicit_flush();
$address = 127.0.0.1 ;
$port = 9500;
if (($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) === false) {
echo "socket_create() falló: razón: " . socket_strerror(socket_last_error()) . "
";
}
if (socket_bind($sock, $address, $port) === false) {
echo "socket_bind() falló: razón: " . socket_strerror(socket_last_error($sock)) . "
";
}
if (socket_listen($sock, 5) === false) {
echo "socket_listen() falló: razón: " . socket_strerror(socket_last_error($sock)) . "
";
}
//clients array
$clients = array();
do {
$read = array();
$read[] = $sock;
$read = array_merge($read,$clients);
// Set up a blocking call to socket_select
if(socket_select($read,$write = NULL, $except = NULL, $tv_sec = 5) < 1)
{
// SocketServer::debug("Problem blocking socket_select?");
continue;
}
// Handle new Connections
if (in_array($sock, $read)) {
if (($msgsock = socket_accept($sock)) === false) {
echo "socket_accept() falló: razón: " . socket_strerror(socket_last_error($sock)) . "
";
break;
}
$clients[] = $msgsock;
$key = array_keys($clients, $msgsock);
/* Enviar instrucciones. */
$msg = "
Bienvenido al Servidor De Prueba de PHP.
" .
"Usted es el cliente numero: {$key[0]}
" .
"Para salir, escriba quit . Para cerrar el servidor escriba shutdown .
";
socket_write($msgsock, $msg, strlen($msg));
}
// Handle Input
foreach ($clients as $key => $client) { // for each client
if (in_array($client, $read)) {
if (false === ($buf = socket_read($client, 2048, PHP_NORMAL_READ))) {
echo "socket_read() falló: razón: " . socket_strerror(socket_last_error($client)) . "
";
break 2;
}
if (!$buf = trim($buf)) {
continue;
}
if ($buf == quit ) {
unset($clients[$key]);
socket_close($client);
break;
}
if ($buf == shutdown ) {
socket_close($client);
break 2;
}
$talkback = "Cliente {$key}: Usted dijo $buf .
";
socket_write($client, $talkback, strlen($talkback));
echo "$buf
";
}
}
} while (true);
socket_close($sock);
?>
Client.php
<?php
//error_reporting(E_ALL);
echo "<h2>TCP/IP Connection</h2>
";
/* Get the port for the WWW service. */
//$service_port = getservbyname( www , tcp );
$service_port=9500;
/* Get the IP address for the target host. */
$address= 127.0.0.1 ;
/* Create a TCP/IP socket. */
$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
if ($socket === false) {
echo "socket_create() failed: reason: " . socket_strerror(socket_last_error()) . "
";
} else {
echo "OK.
";
}
echo "Attempting to connect to $address on port $service_port ...";
$result = socket_connect($socket, $address, $service_port);
if ($result === false) {
echo "socket_connect() failed.
Reason: ($result) " . socket_strerror(socket_last_error($socket)) . "
";
} else {
echo "OK.
";
}
$in = "HEAD / HTTP/1.1
";
$in .= "Host: www.example.com
";
$in .= "Connection: Close
";
$out = ;
echo "Sending HTTP HEAD request...";
socket_write($socket, $in, strlen($in));
echo "OK.
";
echo "Reading response:
";
while ($out = socket_read($socket, 2048)) {
echo $out;
}
echo "Closing socket...";
socket_close($socket);
echo "OK.
";
?>