如何将数据发送到特定套接字

时间:2014-09-27 06:18:08

标签: php json phpwebsocket

我是使用PHP Websocket的新手。 这是我的问题:

我已经成功运行PHP websocket并创建了一个简单的聊天应用程序(当然是Web应用程序)。在接收客户数据。所有客户都将收到数据。我怎样才能将数据发送到指定的客户端,或者发送给多个客户端(而不是所有客户端)。

我在here

了解到这一点

1 个答案:

答案 0 :(得分:0)

<?php
  // Create a new socket
  $sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);

  // An example list of IP addresses owned by the computer
  $sourceips['kevin']    = '127.0.0.1';
  $sourceips['madcoder'] = '127.0.0.2';

  // Bind the source address
  socket_bind($sock, $sourceips['madcoder']);

  // Connect to destination address
  socket_connect($sock, '127.0.0.1', 80);

  // Write
  $request = 'GET / HTTP/1.1' . "\r\n" .
       'Host: example.com' . "\r\n\r\n";
  socket_write($sock, $request);

  // Close
  socket_close($sock);

?>

消息来源:http://php.net/manual/en/function.socket-bind.php